How to make flutter page scrollable using slivers

Issue I am trying to implement a sliver in CustScrollView, below is my code @override Widget build(BuildContext context) { return Scaffold( body: CustomScrollView( slivers: [ SliverAppBar( floating: true, snap: true, expandedHeight: 300, flexibleSpace: FlexibleSpaceBar( background: Image.asset( "assets/images/food6.jpg", width: double.maxFinite, fit:

Continue reading