skip to Main Content

Flutter – BottomNavigationBar set up But No Change of State

Using the code below I set up a BottomNavigationBar widget for testing in Flutter. import 'package:flutter/material.dart'; class Thursday20 extends StatefulWidget { const Thursday20({super.key}); @override State<Thursday20> createState() => _Thursday20State(); } class _Thursday20State extends State<Thursday20> { @override Widget build(BuildContext context) { int…

VIEW QUESTION

Flutter controll scrolling priority

I have a code that has these main widgets: CustomScrollView( physics: const AlwaysScrollableScrollPhysics( parent: BouncingScrollPhysics(), ), slivers: [ SliverFillRemaining( hasScrollBody: true, child: ListView( children: [], ), ), ], ), I have it this way because around the ListView widget I…

VIEW QUESTION
Back To Top
Search