We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@peng8350 Here I'm trying to add Smart Refresher on DefaultTabController and Silvers.
When I try to pull down, nothing happens on the page, there is no error in the terminal as well.
I can't able to understand whats the issue is, what am I doing wrong here.
Scaffold( body: SmartRefresher( header: const ClassicHeader(), footer: const ClassicFooter(), controller: refreshController, onRefresh: _onRefresh, onLoading: _onLoading, child: DefaultTabController( length: myTabs.length, child: NestedScrollView( headerSliverBuilder: (context, innerBoxIsScrolled) { return [ SliverToBoxAdapter( child: Container( color: Constants.surface, padding: const EdgeInsets.symmetric(vertical: 14, horizontal: 20), child: const Text("Header..."), ), ), ]; }, body: TabBarView( controller: _tabController, children: const [ CustomScrollView( slivers: [ SliverToBoxAdapter( child: Tab1(), ), ], ), CustomScrollView( shrinkWrap: true, slivers: [ SliverToBoxAdapter( child: Tab2(), ), ], ), ], ), ), ), ), );
The text was updated successfully, but these errors were encountered:
Same for me, any workarounds ?
Sorry, something went wrong.
same me
same ,not working for nestedscrollview
same
No branches or pull requests
@peng8350 Here I'm trying to add Smart Refresher on DefaultTabController and Silvers.
When I try to pull down, nothing happens on the page, there is no error in the terminal as well.
I can't able to understand whats the issue is, what am I doing wrong here.
The text was updated successfully, but these errors were encountered: