99 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
113
views
Getx Obx() is not updating on GridView, ListView and on BottomNavigationBar
I have added Obx() for updating my UI as per with the variables.obs. It did not work so after that I added variables.refresh() and update() for updating the onChanged() function. Still my UI is not ...
0
votes
3
answers
99
views
Flutter Gridview builder giving out useless white space
I am trying to display 6 cards with gridview builder in flutter. 3 cards each row. i am successful to display the cards along with dymanic content of cards but what i am facing now is that gridview is ...
0
votes
1
answer
93
views
Flutter GridView with PageScrollPhysics: Prevent Grid Items from Cropping on Page Scroll
I'm working on a Flutter app where I need to display items in a horizontally scrolling gridview. I want the [tag:GridView ]to behave like a paginated view, where each "page" scrolls exactly ...
0
votes
2
answers
179
views
Flutter StaggeredGridView not available on latest version of flutter_staggered_grid_view
What I'm trying to do is have a GridView with a variable/dynamic CrossAxisCount.
I have a FutureBuilder retrieving data from an API and sometimes I need to show one item per line and sometimes I need ...
1
vote
1
answer
36
views
GridView not detecting index 1 in if condition
I'm building a grid view where the top right is empty if the itemCount is odd.
Eg.
1 _
2 3
4 5
GridView.builder(
shrinkWrap: true,
itemCount: ...
-1
votes
1
answer
76
views
Child is overflowing when using grid view in flutter
I wrapped a container with a gridView, as a result the card is overflowing. i wrapped gridView with a sizeBox and set the height to 600. Can somebody help me with this. im just started learning ...
1
vote
1
answer
292
views
BoxConstraints forces an infinite height: SizedBox.Expand()
Im building a List View for displaying videos.I'm using ListView to display 2 videos beside each other for each blog post.
I've wrapped ListView inside a SizedBox of a custom height and width. For the ...
0
votes
1
answer
410
views
Extra vertical padding around Navigation Bar and Bottom Navigation Bar in Flutter
I'm encountering extra padding around both the navigation bar at the top and the bottom navigation bar in my Flutter application. This padding creates unnecessary space and disrupts the intended ...
0
votes
0
answers
39
views
In my flutter app, Last two product are not completely showing
To display the product I have used ListView.builder(). I am show only 20 products for now but last 2 products are not completely displayed. It doesnot show any error in debug Console or on screen.
I ...
1
vote
1
answer
158
views
Sticky Header and GridView with large amount of items rendering problems
On my Flutter app, I have this implementation of my layout
CustomScrollView(
controller: _scrollController,
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate((context, index) ...
2
votes
1
answer
1k
views
Flutter, Staggered flutter_staggered_grid_view making each tile tappable without breaking layout
New developer here, need some expertise. I am attempting to create a custom staggered grid view that also allows each tile to be tappable and goes to different pages.
I have tried using inkwell but I ...
0
votes
1
answer
555
views
In Flutter, how can I set a fixed height for grid view items?
I am creating a web application that utilizes a grid view to display items in a grid format. However, I am facing an issue where the height of the grid increases excessively. I have attempted to ...
1
vote
1
answer
270
views
flutter gridview builder is choppy/laggy but it's just a tile of (very) low-res images
Short Question
Is it a bad idea to have gridview builder find (and render) an image file every time it needs to build? Any alternative approach?
Long Question
I'm developing a flutter/dart media ...
1
vote
1
answer
827
views
How to get Grid view count column information upon clicking grid item in flutter
Hi developers i have been using gridview in my flutter app to display some data's my gridview which has crossAxisCount: 5 which is 5 columns so when clicking an item from gridview i want more ...
1
vote
1
answer
75
views
How to detect in ListView.Builder or GridView.Builder user finger is pointing at which index in Flutter Mobile?
I am using ListView horizontal and vertical scrolling and MouseRegion or Inkwell(onHover method) any other way working properly on Flutter web And Desktop devices properly but not mobile devices (IOS ...