flutter读琴项目重点记录

22 篇文章 0 订阅
19 篇文章 0 订阅

1.去除右上角debug标符

debugShowCheckedModeBanner: false,

2.手机屏幕的宽高

width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,

3.获取状态栏高度

MediaQuery.of(context).padding.top

4.计时器引入Timer它是在import ‘dart:async’;里每1秒执行一次

  //  定义定时器
    _timer = Timer.periodic(Duration(milliseconds: 1000), (timer) {
      setState(() {
        _currentTime--;
      });
      if (_currentTime <= 0) {
        _jumpRootPage();
      }
    });

5.销毁页面重定向到首页

    //销毁页面重定向到首页
    Navigator.pushAndRemoveUntil(
        context,
        MaterialPageRoute(builder: (BuildContext context) => RootPage()),
        (route) => false);

6.底部导航栏

bottomNavigationBar: BottomNavigationBar(
        items: _bottomNavBarList,
        currentIndex: _currentIndex,
        onTap: _onTabClick,
        //底部tabbar导航栏文字出现
        type: BottomNavigationBarType.fixed,
      ),

7.tabbar将button放在中间要注意的是bottomNavigationBar和floatingActionButton是同级

Scaffold(
      body: Center(
        child: Text('roott'),
      ),
      bottomNavigationBar: BottomNavigationBar(
        items: _bottomNavBarList,
        currentIndex: _currentIndex,
        onTap: _onTabClick,
        //底部tabbar导航栏文字出现
        type: BottomNavigationBarType.fixed,
      ),
      floatingActionButton: _createMediaButton(),
      floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
    );

8.模版序列化

  1. 在plugs里面安装Json2json_serializable
    打开插件:
    - macOS:Command + option + N
    - Windows:Control + alt + N
  2. 在yaml里面引入这三个环境
dependencies:
  json_annotation: ^4.5.0
dev_dependencies:
  build_runner: ^2.1.7
  json_serializable: ^6.1.3

3.然后去新建一个model文件
4.然后在终端输入命令

flutter packages pub run build_runner build
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值