问题标签 [flutter-sliver]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
flutter - CustomScrollView 中的多个 SliverAppBar
我需要有多个 SliverAppBar,每个在一个视图中都有自己的 SliverList。目前只有第一个 SliverAppBar 正确响应。
当然,我已经在 SO 和 Google 上进行了扩展搜索,但还没有找到解决方案!
如果您滚动,我希望在您滚动列表时看到标题“2”也浮动。
flutter - 如何让 SliverPersistentHeader “过度生长”
我SliverPersistentHeader
在 myCustomScrollView
中使用了一个持久的标题,当用户滚动时它会缩小和增长,但是当它达到最大尺寸时,感觉有点僵硬,因为它不会“过度生长”。
这是我想要的行为的视频(来自 Spotify 应用程序)和我的行为:
.
gridview - 带有标题的 Flutter GridView
如何在 FLUTTER 中创建带有可滚动工具栏的网格视图。我找到了带有标题ListViewWithHeader的列表视图。但是我需要下面提到的带有标题的 GridView。我已经使用 SilverGrid 忽略器来构建这个布局,这有点滞后。所以我需要另一种选择。
caching - 如何在flutter中使用precacheImage函数?
无法使用precacheImage函数将本地图像从资产加载和缓存到 Flutter 中的 GridView 或 ListView。
ISSUE: 滚动列表时,图像总是重新加载。
android - 在flutter中设置childAspectRatio的正确方法
在颤动中计算SliverGridDelegateWithFixedCrossAxisCount的childAspectRatio的正确方法是什么。如何管理与所有设备兼容且应在横向和纵向中工作的每个视图的正确高度
listview - Flutter:使用 ListView.builder 消失的 SliverAppBar
我正在尝试在滚动时使用消失的 Appbar 构建帖子提要(如 Instagram)。这是我的代码:
如您所见,我目前正在使用普通的 AppBar 和 Listview.builder 来创建帖子。我听说过SliverAppBar并尝试在我的设置中实现它,但无法让它与我的 ListView.builder 一起使用。
关于如何在滚动时删除 AppBar 的任何建议或想法?
此致。
flutter - 如何在颤动中更新 SilverGrid 或 SilverList 的项目?Flutter中是否有与notifyDatasetChanged()等价的东西?
使用Emily Fortuna 在 Medium 文章“Slivers, Demystified”中提供的示例代码,我使用SilverList和SilverGrid类创建了一个 Flutter 列表。但是创建列表后我无法更改数据。
listview - Infinite ListView of Images freeze app or throw exceptions during layout [small app included]
I'm trying to make a horizontally scrolling ListView with repeatable images to make it seem like it's one long image scrolling forever (like in 2d platform game).
However, when I add images to the ListView.build(...) method I can't get them to scale properly.
I want the Images to .fitHeight
and after trying all widgets I can think of I get one of two outcomes.
- The app boots but freezes
- The app runs but throws exceptions
Here is the code in its entirety:
If you want to try it out with the example image (actually looks pretty good) you can download the "entire" repo here: https://github.com/joelbrostrom/infinite_listview_image_freeze_example
As you can see in the code comments Image.asset()
freeze the app and wrapping it a FittedBox
makes it runnable but with exceptions.
In my main project the second approach builds with exceptions in debug congif, but freezes in release. Maybe that's a clue?
Here is the exception I get when wrapping the image in the FittedBox
:
Any insight would be appreciated!