Getting a very pesky error on this segment of my Flutter app and no clue why:
child: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 1,
childAspectRatio: 4 / 3,
mainAxisSpacing: 30.0,
crossAxisSpacing: 20.0),
padding: EdgeInsets.only(left: 20),
scrollDirection: Axis.horizontal,
itemCount: products.length,
itemBuilder: (context, i) => ChangeNotifierProvider.value(
value: products[i],
child: Consumer<Product>(
builder: (context, product, _) {
return ProductCard(
product: product,
onSelected: (prod) {
setState(() {
products.forEach(
(item) {
item.isSelected = false;
},
);
prod.isSelected = true;
});
here's the error: SliverGeometry is not valid: The "scrollExtent" is negative.geometry: SliverGeometry(scrollExtent: -10.0, paintExtent: 20.0, maxPaintExtent: -10.0, cacheExtent: 20.0)
scrollExtent: -10.0
paintExtent: 20.0
maxPaintExtent: -10.0
cacheExtent: 20.0
padding: EdgeInsets(20.0, 0.0, 0.0, 0.0)
This error is preventing emulation on Android even though the apk is installed but it just won't run. It runs on iOS but the error remains.
It is my code that was causing the same, Exception before exception
I searched a lot, in short, it is how i solve it
What i did to fix it
In my case, changing gridDelegate, my exception is fixed!
Note: Don't use any Mathematical operation like (/,*) that may produce a double value!!!
Give a like if you find it Useful! :)