I'm working on a flutter project, where in I want to make two widgets to be sticky on scroll.
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!!!