腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(2750)
视频
沙龙
2
回答
在webView安卓系统中打开键盘时如何隐藏navBar?
我用一个简单的webView创建了一个应用程序。当我点击输入并出现键盘时,我想隐藏底部的导航栏。有人能帮我吗?我的清单 package="it.michele.webapp"> <uses-permission android:name="android.permission.INT
浏览 0
提问于2019-06-12
得票数 1
1
回答
如何在颤振中创建具有无状态小部件的按钮导航栏?
、
、
import 'package:flutter/material.dart'; HomePage({this.auth, this.onSignedOut}); final VoidCallback onSignedOut; try { onSig
浏览 4
提问于2020-03-17
得票数 0
1
回答
颤动-单击底部导航菜单图标后,=>选定的图标颜色和文本颜色不变
、
、
IconButton( Icons.camera, ), ), // backgroundColor: Colors.blueAccent.shade100, selectedItemColor: Colors.green
浏览 13
提问于2019-10-04
得票数 0
回答已采纳
1
回答
在屏幕上有图标的颤振小部件的名字是什么?
、
、
在屏幕下面有图标的颤振小部件的名称是什么,我可以从右到左在这些屏幕之间切换(Ex: Twitter主页)我可以使用Container和Row创建一个Icons,并手动创建,但我怀疑这个小部件已经存在。
浏览 2
提问于2022-12-04
得票数 1
回答已采纳
1
回答
为什么BottomNavigationBarItem的标签在点击后不改变?
、
、
、
、
_currentIndex],
bottomNavigationBar
:
BottomNavigationBar
( unselectedItemColor: Colors.black
浏览 6
提问于2022-01-23
得票数 0
回答已采纳
1
回答
将单击处理程序添加到Material Design MDCBottomNavigationBar
、
因此,我正在尝试做一些我认为可能非常简单的事情,但我无法弄清楚。我目前正在使用Material Design Bottom Nav Bar IOS Swift模块,我正在尝试添加一种方法,每当我的某个选项卡按钮被按下时,就可以切换到新视图。有人能帮我吗?任何帮助都将不胜感激。 因此,为了清楚起见,当按下主页按钮时,我希望该按钮调用HomeViewController,当按下消息按钮时,我希望消息按钮调用MessageViewController 到目前为止,这是我的代码。 import UIKit import MaterialComponents.MaterialBottomNavigat
浏览 2
提问于2020-07-27
得票数 1
回答已采纳
8
回答
如何更改
bottomNavigationBar
的颜色?
如何更改
bottomNavigationBar
的颜色? 下面是我的代码片段。我无法更改小工具的颜色。@override return
BottomNavigationBar
( currentIndex:
浏览 118
提问于2018-06-14
得票数 4
回答已采纳
1
回答
Flutter -如何从嵌套脚手架访问抽屉
override return Scaffold(
bottomNavigationBar
:
BottomNavigationBar
( items: const <BottomNavigationBarItem
浏览 11
提问于2021-05-13
得票数 0
2
回答
无状态小部件列表的无效常量值
、
、
override return const Scaffold(
bottomNavigationBar
: _
BottomNavigationBar
(), }在body: pages[0]中有一个无效的常量值错误,如果我像body: MessagesPage()一样直接调用Widget
浏览 6
提问于2021-12-15
得票数 2
回答已采纳
2
回答
在底部导航栏中双击项目颤动
、
我有源库
bottomNavigationBar
:
BottomNavigationBar
在原始库中没有属性onDoubleTap 有没有什么技术可以用它来实现。return Scaffold( children: _widgetOptions, ), items: <BottomNavigationBarItem
浏览 25
提问于2019-12-26
得票数 1
回答已采纳
2
回答
标签文本颜色在脚手架中的底部导航栏小部件中没有变化,颤振
、
我使用了selectedLabelStyle: TextStyle( fontSize: 25,fontWeight: FontWeight.bold,color: Colors.black,),
浏览 17
提问于2022-02-09
得票数 -2
1
回答
在webview_flutter上通过当前url切换瓶装导航项
、
、
onMessageReceived: (JavascriptMessage message) {}), ),
bottomNavigationBar
:
BottomNavigationBar
( currentIndex: _selectedIndex,
浏览 0
提问于2022-05-06
得票数 1
回答已采纳
4
回答
颤振状态下脚手架底部导航栏高度的获取
如何在Flutter中获取Scaffold的
BottomNavigationBar
的height?我知道有MediaQuery.of(context).size可以获取屏幕大小。对于
BottomNavigationBar
,是否有类似的方法
浏览 8
提问于2018-12-02
得票数 20
3
回答
如何防止列表视图在flutter中溢出底部导航栏?
、
、
ListView(...) ))
浏览 35
提问于2021-07-07
得票数 2
回答已采纳
2
回答
如何在BottomNavigationBarItem中更改标签的颜色?
、
下面是其中一个的代码: unselectedLabelStyle: const TextStyle(color
浏览 2
提问于2021-12-04
得票数 0
回答已采纳
2
回答
如何将多个小部件添加到小部件列表
、
、
、
(), new third.Favorites() ), items: const <BottomNavigationBarItem>[ BottomNavigationBarItem
浏览 0
提问于2020-11-18
得票数 2
1
回答
如何在颤振中实现类似底片的YouTube?
、
、
我正在开发一个视频应用程序,它基本上模仿YouTube。我需要用渐变和缩放动画来实现与他们相同的底片。您能推荐我如何开始或使用什么工作表(目前我正在使用快照工作表包)?
浏览 6
提问于2022-12-02
得票数 -1
2
回答
当我在底部栏中添加另一项时,图标和文本变成白色。
PersistentBottomBarScaffold extends StatefulWidget { ),
bottomNavigationBar
:
BottomNa
浏览 12
提问于2022-10-03
得票数 0
回答已采纳
1
回答
bottomNavigationBar
没有出现-颤振
、
我试图在Scaffold中实现底部导航栏小部件,但是由于一些未知的原因,小部件(
bottomNavigationBar
)的内容没有出现class _ChatScreenState extendstoUpperCase()), backgroundColor: Colors.redAccent,
bottomNavigationBar
浏览 5
提问于2022-01-19
得票数 0
1
回答
BottomNavigationBar
颜色变化不正确
), : _widgetOptions.elementAt(_selectedIndex),
bottomNavigationBar
:
BottomNavigationBar
( BottomNavigationBarItem
浏览 0
提问于2019-09-13
得票数 0
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Flutter学习笔记-仿闲鱼底部导航栏带有中间凸起图标
Flutter学习三之搭建一个简单的项目框架
仿深圳地铁app项目
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券