腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(821)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
如何控制
CustomScrollView
内部的
CustomScrollView
?
我有小部件树,它包含顶级的
CustomScrollView
和SliverFillRemaining。SliverFillRemaining可能包含另一个
CustomScrollView
(见图)。 我希望防止嵌套
CustomScrollView
的滚动,直到SliverFillRemaining填充所有视图(因为顶级
CustomScrollView
)。
浏览 1
提问于2019-03-17
得票数 1
回答已采纳
1
回答
SliverPersistentHeader不使用
CustomScrollView
我有一个
CustomScrollView
,看起来像: slivers: [ floating:问题是它不支持条子,因此我不能在
CustomScrollView
中使用它。问题是,我现在如何仍然使用我的SliverPersistentHeader (/Delegate)而不使用
CustomScrollView
?我尝试过使用NestedScrollView,但是所有的示例都只显示了它如何使用
CustomS
浏览 46
提问于2022-04-06
得票数 0
回答已采纳
1
回答
CustomScrollView
和PageView问题
我有里面有SliverFixedExtentList和SliverList的
CustomScrollView
。我在SliverFixedExtentList的委托中放了一个PageView。
浏览 6
提问于2018-10-19
得票数 0
1
回答
CustomScrollView
内部的TabView
.), body: Stack(
CustomScrollView
浏览 77
修改于2019-01-07
得票数 5
1
回答
颤动
CustomScrollView
条子堆叠
我正在尝试使用创建一个scrollView。我需要的效果,与非常相似。这是我的。
浏览 0
提问于2018-09-02
得票数 10
回答已采纳
3
回答
WebView
CustomScrollView
+浮动AppBar
是否有一种在带有WebView的
CustomScrollView
中使用Slivers的方法,还是还不支持这种方法?@override return Scaffold(Widget build(BuildContext context) { slivers: <Widget>[
浏览 0
修改于2019-04-18
得票数 13
1
回答
在PageView中使用
CustomScrollView
我有一个
CustomScrollView
包含一个:-2- SliverList代码片段 slivers: <Widget>[
浏览 4
修改于2019-09-21
得票数 7
回答已采纳
1
回答
在
CustomScrollView
flutter中检测DragEnd?
我想要检测拖动
CustomScrollView
的垂直结束,我所做的是这样的: GestureDetector( child:
CustomScrollView
浏览 21
提问于2020-10-06
得票数 1
1
回答
CustomScrollView
中有多个SliverAppBar
return Scaffold( title: Text('Details'), body:
CustomScrollView
浏览 13
提问于2019-05-05
得票数 0
1
回答
无限滚动,支持
CustomScrollView
颤动
我想知道如何在Flutter中使用
CustomScrollView
实现无限滚动。 final posts = globalFeeds.posts; body:
CustomScrollView
浏览 0
修改于2021-06-08
得票数 0
1
回答
使用StreamBuilder为
CustomScrollView
构建SliverList
这可能是一个很容易解决的问题,但我想我还是在这里问一问:有没有办法在
CustomScrollView
中锚定一个小部件?我想使用
CustomScrollView
来支持应用程序栏中的灵活空间,但是我需要在屏幕底部固定一个输入小部件。我尝试用给定的小部件将
CustomScrollView
嵌套到Column中,但它似乎不起作用: Widget build(BuildContext context) {return Column(
Cu
浏览 1
提问于2019-11-19
得票数 0
1
回答
更改
CustomScrollView
的glov位置
我正在尝试改变滚动glov的位置,从顶部到底部的appBar内部的
CustomScrollView
。根据官方文档中的示例,我可以使用NotificationListener。notification.paintOffset = leadingPaintOffset; return false; child:
CustomScrollView
浏览 20
修改于2020-08-14
得票数 0
回答已采纳
1
回答
定位Widget重叠我的
CustomScrollView
我有一个
CustomScrollView
,在底部需要一个固定的文本输入字段。body: RefreshIndicator( child: Stack(
CustomScrollView
right: 0, ), ),); 只不过定位的小部件与我的
CustomScrollView
我可以添
浏览 2
提问于2021-01-21
得票数 1
回答已采纳
2
回答
在
CustomScrollView
中使用StreamBuilder和SliverLists
我正在尝试使用StreamBuilder来获取数据,并且我希望在
CustomScrollView
中使用SliverList来显示这些数据,这样我就可以利用
CustomScrollView
附带的功能。
浏览 12
提问于2019-01-18
得票数 14
回答已采纳
1
回答
customScrollView
Flutter中的webview全页面加载
我想在
customScrollView
中添加webview。child:
CustomScrollView
( setAppBar(),
浏览 39
修改于2021-02-04
得票数 0
1
回答
侦听启动ScrollController on
CustomScrollView
---------------------------- */ bottom: false, child:
CustomScrollView
浏览 2
修改于2020-04-13
得票数 2
1
回答
CustomScrollView
不检测滚动
return Scaffold( slivers: <Widget>[ SliverAppBar(
浏览 3
修改于2020-05-14
得票数 4
回答已采纳
3
回答
如何同时使用AnimatedSwitcher和
CustomScrollView
我想在
CustomScrollView
中切换动画的状态,但它抛出错误。SliverAnimatedSwitcher> { Widget build(BuildContext context) { body:
CustomScrollView
浏览 0
提问于2019-10-25
得票数 10
1
回答
带有溢出的TabBarView的
CustomScrollview
因此,我在使用以下设置时遇到了一些困难:
CustomScrollView
( SliverAppBar(...), SliverToBoxAdapter
浏览 166
修改于2020-08-11
得票数 3
2
回答
我如何从小使用
CustomScrollView
我想使用
CustomScrollView
作为行/列小部件的子级 当
CustomScrollView
是根目录时,它工作得很好。但是,当我把它放入Row Widget的孩子中时,它就出现了一个错误。
CustomScrollview
不能用作行小部件的子级吗?如果是,请告诉我原因,最好的替代方案是什么? 或者,如果我的代码中有错误,我希望您纠正它。template=BUG.md
CustomScrollView
The followi
浏览 75
修改于2020-10-25
得票数 2
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券