腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(9999+)
视频
沙龙
2
回答
如何
让
RefreshIndicator
消失
?
dart
、
flutter
我想在应用程序中启用一个
RefreshIndicator
,所以我不得不修改Homepage小部件并添加GlobalKey来访问CountryList小部件的getCountryData()函数。
RefreshIndicator
做得很好。但现在的问题是,当我在应用程序中拉取和使用
RefreshIndicator
时,getCountryData()函数会被调用,但即使在显示了列表中的所有数据之后,循环微调器也不会运行(如截图所示)。
浏览 25
提问于2019-03-26
得票数 7
回答已采纳
2
回答
颤振:在使用扩展的内部ParentDataWidget时,不正确地使用SingleChildScrollView
flutter
、
flutter-layout
添加SingleChildScrollView和Expanded只是因为我想
让
RefreshIndicator
正常工作。Scaffold Expanded Column 直到我最近升级了颤振,它才开始工作同样,我的主要意图是
让
我的
RefreshIndicator
在Scaffold中工作。
浏览 11
提问于2021-12-26
得票数 1
1
回答
在flutter应用程序中下拉以刷新应用程序状态
flutter
、
flutter-layout
Widget build(BuildContext context) { home: Scaffold( body:
RefreshIndicator
浏览 3
提问于2020-12-20
得票数 0
2
回答
onRefresh回调返回null
flutter
、
dart
我正在使用
RefreshIndicator
刷新互联网上的数据,但当我从顶部向下拉时,刷新图标并没有
消失
,还出现了一个错误:═══════════════════════════════════════
浏览 0
提问于2021-04-25
得票数 0
2
回答
当第三方物流任务运行时,
如何
显示iOS网络指示器?
ios
、
xamarin.ios
、
task-parallel-library
、
xamarin
在与服务器API交谈时,我大量使用任务并行库。我该怎么做呢?
浏览 1
提问于2013-01-28
得票数 7
回答已采纳
5
回答
当列表没有填充整个页面时,刷新指示器不起作用
flutter
、
dart
Center(child: CircularProgressIndicator()) onRefresh:
浏览 0
提问于2019-08-16
得票数 39
回答已采纳
11
回答
不带滚动视图的刷新指示器
flutter
我知道对于ListView或SingleChildScrollView,
RefreshIndicator
只能在本地工作,但我想在不能滚动的页面上使用
RefreshIndicator
。这是可能的吗?如果可能,
如何
实现?
浏览 1
提问于2018-05-06
得票数 35
1
回答
头条不浮动在NestedScrollView中的列表上
flutter
、
dart
我有一个材料设计屏幕,在那里我使用一个
RefreshIndicator
的拉-刷新效果.但是,我需要
RefreshIndicator
出现在SliverAppBar下面;因此,我不能只将SliverAppBar我想
让
它浮起来,然后向上/向下滚动。Title'), ) body: Builder( builder: (context) =>
RefreshIndicator
如何
使
浏览 2
提问于2020-07-17
得票数 2
1
回答
让
RefreshIndicator
与SingleChildScrollable协同工作
flutter
、
dart
、
flutter-layout
(BuildContext context, BoxConstraints viewportConstraints) { return
RefreshIndicator
浏览 2
提问于2020-09-23
得票数 0
回答已采纳
1
回答
水平ListView.builder上的
RefreshIndicator
flutter
、
listview
、
refresh
我有一个水平的ListView.builder小部件,当向左拖动它时,我想用
RefreshIndicator
刷新它。return Container( child:
RefreshIndicator
myTitle: _getTopXList[index].title + " (" + 列表正在初始加载,但
RefreshIndicat
浏览 15
提问于2021-04-26
得票数 2
回答已采纳
1
回答
在
RefreshIndicator
中隐藏循环进度
flutter
、
flutter-layout
我试图在我的颤振应用程序中使用
RefreshIndicator
,所以我使用了这个内置库: child:
RefreshIndicator
( getTools(); _closeDialog(); } 现在我想使用
RefreshIndicator
刷新我的列表,但是我有一个问题:我只想使用
RefreshIndicat
浏览 0
提问于2020-03-23
得票数 1
回答已采纳
1
回答
无限滚动列表视图--构建过程中调用的setState()或markNeedsBuild
android
、
ios
、
dart
、
flutter
要在_loadNames函数中使用_loadNames来“加载”,但是当从itemBuilder调用_loadNames时,我会得到“在构建错误期间调用的setState”,使用
RefreshIndicator
如何
能够在没有错误的情况下从_loadNames构建器调用ListViews,或者可以使用什么其他方法。注:不想使用剩余或集团。return ListTile( );
RefreshIndicator
浏览 0
提问于2018-07-09
得票数 3
回答已采纳
1
回答
Flutter:刷新之前,Firestore中的项目不会显示在GridView中
firebase
、
flutter
、
gridview
、
google-cloud-firestore
当应用程序启动或我执行热重启时,从数据库获取的项显示一秒钟,然后再次
消失
,我必须应用
RefreshIndicator
并向下拖动屏幕以刷新产品并
让
它们再次出现。Center(child: CircularProgressIndicator(), ) :
RefreshIndicator
( onRefresh: () => _refreshProducts
浏览 8
提问于2020-07-20
得票数 0
3
回答
颤动:使用
RefreshIndicator
时无刷新指示器
flutter
、
dart
、
pull-to-refresh
我将
RefreshIndicator
添加到我的页面,但在拉入以刷新时看不到指示器。Widget build(BuildContext context) { child: new
RefreshIndicator
)); print('refreshing stocks...'); }
如何
使用<e
浏览 40
提问于2019-01-05
得票数 29
回答已采纳
1
回答
当子进程是PageView时,
如何
让
RefreshIndicator
工作
flutter
、
dart
代码- Scaffold( child: PageView( children: [Some
浏览 53
提问于2020-04-04
得票数 0
回答已采纳
1
回答
如何
使用ListView.builder reverse在顶部显示
RefreshIndicator
:true
flutter
、
flutter-layout
、
flutter-animation
我有一个ListView.Builder,reverse:true,因为我想
让
列表在加载消息页面时出现在底部。然而,由于列表中有reverse:true,所以在使用
RefreshIndicator
时,它们必须在屏幕底部拉出以加载以前的消息。有没有办法在向下拉而不是向上拉时触发
RefreshIndicator
:true?
浏览 19
提问于2018-07-23
得票数 3
回答已采纳
3
回答
如何
将
RefreshIndicator
添加到列表的子部分?
flutter
假设我有: Title ListItemListItem 我希望整个东西向上滚动(这样标题和搜索栏就
消失
了),但如果用户向下拉,它应该刷新列表HEADER), SingleChildScrollView( child:
RefreshIndicator
浏览 26
提问于2021-01-25
得票数 0
1
回答
是否有一种向webview_flutter小部件添加下拉刷新的方法?
flutter
、
webview
我正在尝试创建一个颤振应用程序,它将在WebView中显示一个网站,并且我希望能够设置一个
RefreshIndicator
,当用户在webview上下拉并刷新WebView时触发它。我可以
让
WebView工作,但是
RefreshIndicator
只能使用垂直滚动视图。我尝试过将WebView添加到ListView中,作为唯一的子类,但是WebView并没有拉下ListView。我尝试过将
RefreshIndicator
放在Webview上,我也尝试使用PageView而不是ListView import 'dar
浏览 5
提问于2019-07-23
得票数 7
3
回答
使用NestedScrollview的
RefreshIndicator
dart
、
flutter
我想2个选项卡页,每个都有一个ListView共享一个
RefreshIndicator
。但是,
RefreshIndicator
必须作为子标签具有可滚动属性(而TabBarView不是),所以我尝试
让
每个标签有2个RefreshIndicators,如下面的代码所示。{ super.build(context); return
RefreshIndicator
对两个标签都使用一个<em
浏览 4
提问于2018-09-11
得票数 8
2
回答
如何
在制表符中给出渐变线
android
、
dart
、
flutter
PS:如果可能的话,请
让
我知道
如何
给主题颜色意味着主要的原色作为渐变?: new TabBarView( Tab( ), Tab( child: new
RefreshIndicator</
浏览 0
提问于2018-10-23
得票数 6
回答已采纳
点击加载更多
相关
资讯
消失的镜头:如何巧妙地运用机位搭建运营技巧,让直播更精彩
我们的身体如何消失
它的出现让驾校消失……?
区块链溯源,让“假疫苗”问题彻底消失!
去中心的区块链+,会让公司消失吗?
热门
标签
更多标签
云服务器
ICP备案
对象存储
云点播
即时通信 IM
活动推荐
运营活动
广告
关闭
领券