skip to Main Content

ListView viewable under background – Flutter

I'm encountering a little issue which is surely easily resolvable but I can't find any solution. All the suggested subjetcs are about custom backgrounds... Here is my code : class HomeTest extends StatefulWidget { const HomeTest({super.key}); @override State<HomeTest> createState() =>…

VIEW QUESTION

DiagnosticsProperty<BoxConstraints> – Flutter

Please I am having this error in my flutter code. Below is my code: return Scaffold( appBar: AppBar( backgroundColor: Colors.black, leading: IconButton( onPressed: () { Navigator.of(context).pop(); }, icon: const Icon(Icons.arrow_back_ios)), title: const Text('Categories'), ), body: Container( color: Colors.black, height: double.infinity,…

VIEW QUESTION
Back To Top
Search