[on web] tried to fit some widgets inside a FittedBox
like this :
FittedBox(
fit: BoxFit.scaleDown,
child: AnimatedContainer(...)
)
but screen and console show only this message :
there's nothing else in the console
what's the next step here ? :D
I was getting this error inside of a CustomScrollView because one of my widgets wasn't inside of a SliverToBoxAdapter.
SliverToBoxAdapter(
child: Row(
children: [
Text('Activity',
style: TextStyle(fontWeight: FontWeight.w600, fontSize: 18),),
],
),
)
I'd just make sure all widgets in your sliver list are actually slivers.
More Info was provided by the framework after a little messing around with the code , like extra children , random sizes to parents . . .
Error >> ... object was given an infinite size during layout
ultimately some like this worked :
FittedBox(
fit: BoxFit.scaleDown,
child: Container(
height: MediaQuery.of(context).size.height * .65,
child: AnimatedContainer(...)
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With