flutter 底部导航栏 选中,不选中时自定义图标

 bottomNavigationBar: CupertinoTabBar(
                // 底部导航
                backgroundColor: SQColor.white,
                activeColor: SQColor.blue,
                items: <BottomNavigationBarItem>[
                  BottomNavigationBarItem(
                      icon: (page == 0)//页面index
                          ? Image.asset('images/home_true_1.png')//选中时的图标
                          : Image.asset('images/home_false_1.png'),//未选中时的图标
                      title: Text('首页')),
                 ],
                onTap: onTap,
                currentIndex: page,
              ),

 

上一篇:236Echarts - 3D 柱状图(Global Population - Bar3D on Globe)


下一篇:2019-07-26-hexo博客图片问题