Home > Mobile >  How to make two widgets sticky
How to make two widgets sticky

Time:08-22

I'm working on a flutter project, where in I want to make two widgets to be sticky on scroll.

enter image description here

CodePudding user response:

I thing you can use SliverAppBar to achieve it

CodePudding user response:

Do something like this

body:Column( Children:[Sticky Widget1, Sticky Widget2,
Expended(child:Listview(children: [ScrollableWidget1,ScrollableWidget2,...] ))] )

All the best!!!

  • Related