owner._debugCurrentBuildTarget == this , is not true

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(...)
)