Flutter – My widgets keep getting rebuilt and making http request every time
In my app I have an index screen with some bottom nav that can show or go to another screen on click using setState to change the _selectedIndex and the screen are in a list class IndexPage extends StatefulWidget { const IndexPage({Key? key}) : super(key: key); @override State<IndexPage> createState() => _IndexPageState(); } class _IndexPageState extends… Read More Flutter – My widgets keep getting rebuilt and making http request every time