CustomScrollView(
SliverToBoxAdapter(), // firstBox
SliverPersistentHeader(pinned:true),
SliverToBoxAdapter(), // secondBox
)
I have a button on this page, when I click this button, how let SliverPersistentHeader scroll to top programmatically?
Addition: firstBox's height is uncertain.