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

Align items in horizontal ListView.builder – Flutter

I have this code : FutureBuilder( future: _data, builder: (context, AsyncSnapshot snapshot) { if (!snapshot.hasData) { return const Center(child: CustomLoadingAnimation()); } else { var data = snapshot.data; return Container( decoration: BoxDecoration( color: primaryFlashColor, borderRadius: BorderRadius.circular(20)), height: 14.h, width: 100.w, child:…

VIEW QUESTION
Back To Top
Search