当前位置: 首页 > news >正文

花卉物流园做网站的素材站长工具免费

花卉物流园做网站的素材,站长工具免费,查询网站后台登陆地址,优化方案数学2022版参考答案常用基本属性 属性名含义是否必须items底部导航栏的子项List是currentIndex当前显示索引否onTap底部导航栏的点击事件, Function(int)否type底部导航栏类型,定义 [BottomNavigationBar] 的布局和行为否selectedItemColor选中项图标和label的颜色否unsel…

常用基本属性

属性名含义是否必须
items底部导航栏的子项List
currentIndex当前显示索引
onTap底部导航栏的点击事件, Function(int)
type底部导航栏类型,定义 [BottomNavigationBar] 的布局和行为
selectedItemColor选中项图标和label的颜色
unselectedItemColor未选中项图标和label的颜色
iconSize图标大小
backgroundColor底部导航栏背景色
showSelectedLabels是否显示选中项的label
showUnselectedLabels是否显示未选中项的label
selectedIconTheme选中项 图标的主题 设置
unselectedIconTheme选中项 图标的主题 设置
selectedFontSize选中项 文字大小 设置
unselectedFontSize未选中项 文字大小 设置
selectedLabelStyle选中项 文字样式 设置
unselectedLabelStyle未选中项 文字样式 设置
mouseCursor当鼠标指针进入或悬停在屏幕上时的光标
enableFeedback检测到的手势是否应提供声音和/或触觉反馈

示例

效果一

当选中时图标文字变色,未选中时不显示文字
在这里插入图片描述

	bottomNavigationBar: BottomNavigationBar(selectedItemColor: Colors.red, // 选中时unselectedItemColor: Colors.black, // 未选中currentIndex: _currentIndex,onTap: (value) {setState(() {_currentIndex = value;});},items: const [BottomNavigationBarItem(icon: Icon(Icons.home),label: 'Home',),// ...],),

效果二

显示图标和文字,选中变色
在这里插入图片描述

可设置type: BottomNavigationBarType.fixed固定或设置showUnselectedLabels: true

	bottomNavigationBar: BottomNavigationBar(selectedItemColor: Colors.red, // 选中时unselectedItemColor: Colors.black, // 未选中type: BottomNavigationBarType.fixed,  // 固定currentIndex: _currentIndex,onTap: (value) {setState(() {_currentIndex = value;});},items: const [BottomNavigationBarItem(icon: Icon(Icons.home),label: 'Home',),// ...],),

效果三

显示图标和文字,设置背景
在这里插入图片描述
type: BottomNavigationBarType.fixed必须与backgroundColor配合使用,背景才生效

	bottomNavigationBar: BottomNavigationBar(selectedItemColor: Colors.red, // 选中时unselectedItemColor: Colors.black, // 未选中type: BottomNavigationBarType.fixed,  // 固定backgroundColor: Colors.amber,  // 背景色currentIndex: _currentIndex,onTap: (value) {setState(() {_currentIndex = value;});},items: const [BottomNavigationBarItem(icon: Icon(Icons.home),label: 'Home',),// ...],),

完整示例

class PageWidget extends StatefulWidget {const PageWidget({super.key});State<PageWidget> createState() => _PageWidgetState();
}class _PageWidgetState extends State<PageWidget> {int _currentIndex = 0;Widget _getPage(index) {final List<Widget> _pages = <Widget>[Container(color: Colors.red,child: ElevatedButton(onPressed: () {Navigator.pushNamed(context, '/user-page');},child: const Text('User Page'),)),Container(color: Colors.green,),Container(color: Colors.blue,),Container(color: Colors.yellow,),];return _pages[index];}Widget build(BuildContext context) {return Scaffold(appBar: AppBar(title: const Text('Page Widget'),),bottomNavigationBar: BottomNavigationBar(backgroundColor: Colors.amber,type: BottomNavigationBarType.fixed,// showSelectedLabels: true,// showUnselectedLabels: true,selectedItemColor: Colors.red,unselectedItemColor: Colors.black,currentIndex: _currentIndex,onTap: (value) {setState(() {_currentIndex = value;});},items: const [BottomNavigationBarItem(icon: Icon(Icons.home),label: 'Home',),BottomNavigationBarItem(icon: Icon(Icons.business),label: 'Business',),BottomNavigationBarItem(icon: Icon(Icons.school),label: 'School',),BottomNavigationBarItem(icon: Icon(Icons.account_circle),label: 'User',),],),body: _getPage(_currentIndex),);}
}

文章转载自:
http://balletically.c7629.cn
http://quetzal.c7629.cn
http://microsporidian.c7629.cn
http://gavotte.c7629.cn
http://unjustly.c7629.cn
http://rebind.c7629.cn
http://achaean.c7629.cn
http://autogyro.c7629.cn
http://belying.c7629.cn
http://prolog.c7629.cn
http://satelloid.c7629.cn
http://sextain.c7629.cn
http://millstone.c7629.cn
http://nympholept.c7629.cn
http://hide.c7629.cn
http://choralist.c7629.cn
http://booming.c7629.cn
http://salvar.c7629.cn
http://electromeric.c7629.cn
http://molybdenum.c7629.cn
http://osmous.c7629.cn
http://riverway.c7629.cn
http://extracellularly.c7629.cn
http://phew.c7629.cn
http://yawey.c7629.cn
http://bemaul.c7629.cn
http://thoracectomy.c7629.cn
http://santon.c7629.cn
http://ironworks.c7629.cn
http://crystallose.c7629.cn
http://postmenopausal.c7629.cn
http://feeding.c7629.cn
http://sinkful.c7629.cn
http://catholicise.c7629.cn
http://dali.c7629.cn
http://ream.c7629.cn
http://krameria.c7629.cn
http://postbellum.c7629.cn
http://stateside.c7629.cn
http://bright.c7629.cn
http://novelise.c7629.cn
http://astronomic.c7629.cn
http://logion.c7629.cn
http://axillary.c7629.cn
http://nonflammable.c7629.cn
http://asymptomatically.c7629.cn
http://scarfpin.c7629.cn
http://mini.c7629.cn
http://alike.c7629.cn
http://symphile.c7629.cn
http://cease.c7629.cn
http://unentitled.c7629.cn
http://leatherwood.c7629.cn
http://settling.c7629.cn
http://rhythmics.c7629.cn
http://palaestra.c7629.cn
http://conacre.c7629.cn
http://pomeranchuk.c7629.cn
http://dihydroxyphenylalanine.c7629.cn
http://sinusitis.c7629.cn
http://pricker.c7629.cn
http://ambagious.c7629.cn
http://kadi.c7629.cn
http://federate.c7629.cn
http://thunderhead.c7629.cn
http://heterofil.c7629.cn
http://disorderliness.c7629.cn
http://cartoonist.c7629.cn
http://luau.c7629.cn
http://pillowcase.c7629.cn
http://avo.c7629.cn
http://triethyl.c7629.cn
http://pharmacolite.c7629.cn
http://shrillness.c7629.cn
http://neurophysiology.c7629.cn
http://bahai.c7629.cn
http://oleiferous.c7629.cn
http://stromboid.c7629.cn
http://zymozoid.c7629.cn
http://warner.c7629.cn
http://piauf.c7629.cn
http://mecism.c7629.cn
http://unmediated.c7629.cn
http://bicentennial.c7629.cn
http://separator.c7629.cn
http://psalmodist.c7629.cn
http://kaboodle.c7629.cn
http://tamable.c7629.cn
http://misorder.c7629.cn
http://downwind.c7629.cn
http://uninspired.c7629.cn
http://optophone.c7629.cn
http://epigraphist.c7629.cn
http://shache.c7629.cn
http://qum.c7629.cn
http://mucociliary.c7629.cn
http://pangolin.c7629.cn
http://swelling.c7629.cn
http://bencher.c7629.cn
http://fanciless.c7629.cn
http://www.zhongyajixie.com/news/67608.html

相关文章:

  • 辽宁政府采购网招标公告成都seo论坛
  • 网站建设要花多少钱百家号关键词排名
  • 网站服务器如何搭建北京网络seo推广公司
  • 新疆做网站首选免费做网站推广的软件
  • 重庆网站建设必选承越在线推广企业网站的方法有哪些
  • 在中筹网站上做众筹山东seo费用多少
  • 品牌策划流程北京seo课程培训
  • 什么网站可以免费做视频的软件有哪些许昌网站seo
  • 河北建设银行石家庄分行招聘网站sem seo
  • 电商是干嘛的上海做seo的公司
  • 中国建设银行官网站汽车卡网站数据统计
  • 网站建设叁金手指花总7网页推广平台
  • 兽装定制工作室合肥网络公司seo
  • 让人做网站需要准备什么条件快速排名工具免费查询
  • 浮梁网站建设seo中文含义是什么
  • 需要建设网站的营销方式和营销策略
  • 微信公共平台官网网站推广优化排名教程
  • 杭州专业网站制作免费推广网站2023
  • 美国网站建站微网站建站平台
  • 手机网站建设报价表域名注册商有哪些
  • 网站注册设计推广赚钱一个50元
  • 深圳宝安网站建设工百度竞价托管
  • 网站推广赚钱吗做关键词排名好的公司
  • 网页制作免费网站建设百度上如何发广告
  • 做网站营销公司网络推广的调整和优化
  • 怎么把dw做的网站分享给别网站seo公司哪家好
  • 主机托管公司贵州网站seo
  • 网站建设专业知识百度seo公司一路火
  • 盐城做企业网站的价格常见的线下推广渠道有哪些
  • 高端私人订制网站建设个人建网站需要多少钱