How can i prevent that scroll offset be bigger than view content (NestedScrollView and TabBarView)How can I make a div stick to the top of the screen once it's been scrolled to?How to disable scrolling in UITableView table when the content fits on the screenJquery - Fixed Floating Elements and Animated BackgroundjQuery Scrolling issue with body height 100%Flutter - Implementing a Navigation drawer with a TabBarView widget with dynamic Tab viewHow to limit scroll distance in a scroll view in Flutter?How to Enable Listview scrolling that disabled in TabBarView parentHow to offset a scaffold widget in Flutter?Prepend list view items while maintaining scroll view offset in Flutterhow can i communicate between drawer and tabbarview in flutter
Can machine learning learn a function like finding maximum from a list?
Best Ergonomic Design for a handheld ranged weapon
Value of a limit.
Would people understand me speaking German all over Europe?
Word for soundtrack music which is part of the action of the movie
Should students have access to past exams or an exam bank?
How to prevent a single-element caster from being useless against immune foes?
Derivative is just speed of change?
What to expect in a jazz audition
How to get Planck length in meters to 6 decimal places
How to find bus maps for Paris outside the périphérique?
Can I shorten this filter, that finds disk sizes over 100G?
Is it unprofessional to mention your cover letter and resume are best viewed in Chrome?
How can flights operated by the same company have such different prices when marketed by another?
How do discovery writers hibernate?
How would a lunar colony attack Earth?
Reducing the time for rolling hash
Why are we moving in circles with a tandem kayak?
How to innovate in OR
Can living where Rare Earth magnetic ore is abundant provide any protection?
Help me, I hate squares!
What is the term for completing a route uncleanly?
Why is “deal 6 damage” a legit phrase?
Gold Battle KoTH
How can i prevent that scroll offset be bigger than view content (NestedScrollView and TabBarView)
How can I make a div stick to the top of the screen once it's been scrolled to?How to disable scrolling in UITableView table when the content fits on the screenJquery - Fixed Floating Elements and Animated BackgroundjQuery Scrolling issue with body height 100%Flutter - Implementing a Navigation drawer with a TabBarView widget with dynamic Tab viewHow to limit scroll distance in a scroll view in Flutter?How to Enable Listview scrolling that disabled in TabBarView parentHow to offset a scaffold widget in Flutter?Prepend list view items while maintaining scroll view offset in Flutterhow can i communicate between drawer and tabbarview in flutter
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm using slivers to get a animated page with a header collapsable and a TabView body, but the offset of scroll is considering the fully page. What i need to do to get the right offset ? I'm putting an example about what happens.
I'm using flutter 1.2.1
NestedScrollView(
controller: _scrollController,
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled)
return [
SliverAppBar(
pinned: true,
backgroundColor: greenColor.withOpacity(0.6),
flexibleSpace: FlexibleSpaceBar(
collapseMode: CollapseMode.pin,
background: _buildHeader(context),
),
expandedHeight: 300.0,
bottom: _buildTabBar(),
)
];
,
body: _buildTabView(context),
)
I expect the offset stops when the header stops of being collapsed
scroll dart flutter tabs tabview
add a comment |
I'm using slivers to get a animated page with a header collapsable and a TabView body, but the offset of scroll is considering the fully page. What i need to do to get the right offset ? I'm putting an example about what happens.
I'm using flutter 1.2.1
NestedScrollView(
controller: _scrollController,
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled)
return [
SliverAppBar(
pinned: true,
backgroundColor: greenColor.withOpacity(0.6),
flexibleSpace: FlexibleSpaceBar(
collapseMode: CollapseMode.pin,
background: _buildHeader(context),
),
expandedHeight: 300.0,
bottom: _buildTabBar(),
)
];
,
body: _buildTabView(context),
)
I expect the offset stops when the header stops of being collapsed
scroll dart flutter tabs tabview
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09
add a comment |
I'm using slivers to get a animated page with a header collapsable and a TabView body, but the offset of scroll is considering the fully page. What i need to do to get the right offset ? I'm putting an example about what happens.
I'm using flutter 1.2.1
NestedScrollView(
controller: _scrollController,
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled)
return [
SliverAppBar(
pinned: true,
backgroundColor: greenColor.withOpacity(0.6),
flexibleSpace: FlexibleSpaceBar(
collapseMode: CollapseMode.pin,
background: _buildHeader(context),
),
expandedHeight: 300.0,
bottom: _buildTabBar(),
)
];
,
body: _buildTabView(context),
)
I expect the offset stops when the header stops of being collapsed
scroll dart flutter tabs tabview
I'm using slivers to get a animated page with a header collapsable and a TabView body, but the offset of scroll is considering the fully page. What i need to do to get the right offset ? I'm putting an example about what happens.
I'm using flutter 1.2.1
NestedScrollView(
controller: _scrollController,
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled)
return [
SliverAppBar(
pinned: true,
backgroundColor: greenColor.withOpacity(0.6),
flexibleSpace: FlexibleSpaceBar(
collapseMode: CollapseMode.pin,
background: _buildHeader(context),
),
expandedHeight: 300.0,
bottom: _buildTabBar(),
)
];
,
body: _buildTabView(context),
)
I expect the offset stops when the header stops of being collapsed
scroll dart flutter tabs tabview
scroll dart flutter tabs tabview
asked Mar 26 at 21:51
lucas brittolucas britto
626 bronze badges
626 bronze badges
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09
add a comment |
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366719%2fhow-can-i-prevent-that-scroll-offset-be-bigger-than-view-content-nestedscrollvi%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366719%2fhow-can-i-prevent-that-scroll-offset-be-bigger-than-view-content-nestedscrollvi%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you could remove withOpacity : greenColor.withOpacity(0.6)
– diegoveloper
Mar 27 at 4:22
@diegoveloper i put the opacity just to show the problem, the contents is going to behind the app bar and needs to stop when the header stops to being collapsed, the right way is to go behind when the content of the page will be larger than the space, can you understand ? I'm sorry for english mistakes, i'm not fluently
– lucas britto
Mar 27 at 13:09