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

Flutter IconButton onPressed never fires

As I was unaware that ListTiles exists I implemented the following from scratch: My widget-structure looks like this: StudiesItemWidget (equals scaffold of widget, contains the following three) StudiesItemDuration (equals leading number) StudiesItemDescription (equals main body of widget, containing description +…

VIEW QUESTION
Back To Top
Search