skip to Main Content

Dock Widget on other Widget Flutter

I want to "dock" the Text Widget you can see on the Picture on the GridView. My approach looks like this: Container( height: 500, child: Column( children: [ Expanded( child: GridView.count( physics: NeverScrollableScrollPhysics(), crossAxisCount: 7, childAspectRatio: 0.6, children: List.generate(dates.length, (index)…

VIEW QUESTION
Back To Top
Search