-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
MultiCrossAxisSliver #45
Comments
Hey @doppio sorry for the late response. I did already have A major open question for me would be, how do we determine the cross axis size of the widget since slivers assume to take op the whole cross axis. If you have any ideas or interest in making a PR let me know! |
We could have a If a child sliver must fill the cross axis space then a child could simply have a default flex value of |
Hi! First thanks @Kavantix for your work! SliverStack(
positionedAlignment: Alignment.topCenter,
children: [
CustomScrollView(...),
SliverPositioned(
top: 10,
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [...],
)
),
],
); My problem is that horizontal scrolling is not working (i.e scrolling) anymore when using the I do not know if it is an expected (not supported yet) behavior or if I am doing something wrong. Thanks ! 😄 |
Hey, thanks for this great package!
I have a vertically scrolling MultiSliver. In wide layouts, I want two of the slivers in the MultiSliver to be arranged horizontally. I initially added them as a standard Row(), but that won't work since each child is a sliver. Is there already a way to do that with this package? If not, would there be any interest in adding something like "SliverRow"/"SliverFlex"? Or maybe something like "CrossAxisMultiSliver"?
The text was updated successfully, but these errors were encountered: