flutter一行代码实现app主题灰色

文章展示了如何在Flutter应用中通过ColorFiltered组件应用矩阵滤镜实现灰色主题模式。在主入口的build方法中,使用一个布尔值控制是否包裹ColorFiltered,以切换正常和灰色主题。同时,详细配置了BottomNavigationBar的样式和交互逻辑。
摘要由CSDN通过智能技术生成

利用组件ColorFiltered的滤镜效果实现。

在main入口的build使用ColorFiltered包裹设置颜色值,如果不用灰色主题就不包裹,用个布尔值控制是否包裹。

@override
Widget build(BuildContext context) {
  return showGreyMode

      ///灰色主题模式
      ? ColorFiltered(
          colorFilter: const ColorFilter.matrix(<double>[
            0.2126,
            0.7152,
            0.0722,
            0,
            0,
            0.2126,
            0.7152,
            0.0722,
            0,
            0,
            0.2126,
            0.7152,
            0.0722,
            0,
            0,
            0,
            0,
            0,
            1,
            0,
          ]),
          child: Scaffold(
            body: IndexedStack(
              children: mainLogic.body,
              index: mainLogic.selectedIndex,
            ),
            bottomNavigationBar: BottomNavigationBar(
              //设置底部按钮排序样式
              type: BottomNavigationBarType.fixed,
              //设置点击状态颜色
              fixedColor: Colors.red,
              //设置没有被点击到状态颜色
              unselectedItemColor: Colors.black,
              //底部按钮集合
              items: mainLogic.getItems,
              onTap: (int index) {
                setState(() {
                  mainLogic.selectedIndex = index;
                });
              },
              currentIndex: mainLogic.selectedIndex,
            ),
          ),
        )

      ///正常主题模式
      : Scaffold(
          body: IndexedStack(
            children: mainLogic.body,
            index: mainLogic.selectedIndex,
          ),
          bottomNavigationBar: BottomNavigationBar(
            //设置底部按钮排序样式
            type: BottomNavigationBarType.fixed,
            //设置点击状态颜色
            fixedColor: Colors.red,
            //设置没有被点击到状态颜色
            unselectedItemColor: Colors.black,
            //底部按钮集合
            items: mainLogic.getItems,
            onTap: (int index) {
              setState(() {
                mainLogic.selectedIndex = index;
              });
            },
            currentIndex: mainLogic.selectedIndex,
          ),
        );
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值