flutter-gridview Questions

4

I updated my flutter and dart package last night and now StaggeredGridView which was scrolling perfectly before is giving me an error: [ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Excepti...
Expansion asked 12/5, 2019 at 12:5

1

Solved

I use CustomScrollView with SliverGrid. I add space between grid items using this: mainAxisSpacing: 8, crossAxisSpacing: 8. But is it possible to add space (margin/padding) before the first and aft...
Occidentalize asked 21/12, 2021 at 16:32

1

I want to display a list of widgets with variable sizes. Flutter's Wrap is a great fit for my layout needs. final List<dynamic> someItems; return SingleChildScrollView( child: Wrap( chi...
Blinking asked 25/12, 2019 at 11:25

2

Solved

I am trying to create a gridview of raised buttons but there is a large amount of space between the rows of of the grid like this picture: I am implementing the GridView with the code at the bot...
Awning asked 24/5, 2019 at 6:53

4

I am an android developer and new to flutter. I would like to create a GridView with wrap content item height (I draw it with pen in the screenshot). But I have tried with the following code and ...
Grewitz asked 26/4, 2019 at 4:26

1

Solved

I am trying to fill Grid view data from right to left, as the application is in arabic and everything is RTL. Here is what I want I am using Stream builder to populate data and the following Gri...
Paramnesia asked 10/3, 2019 at 18:26
1

© 2022 - 2024 — McMap. All rights reserved.