flutter 设置body可延伸到状态栏

关键代码:extendBodyBehindAppBar: true

dart 复制代码
@override
  Widget build(BuildContext context) {
    return Scaffold(
      extendBodyBehindAppBar: true,//设置body是否可以延伸到状态栏
      backgroundColor: JadeColors.lightGrey,
      appBar: CustomAppBar(
        backgroundColor: Colors.transparent, //appbar设置透明不会遮挡body中的背景图
          leading: IconButton(
              onPressed: () => Navigator.pop(context),
              icon: Icon(Icons.arrow_back_ios, color: Colors.white)),
          title: Text(S.current.q,
              style: TextStyle(
                  fontSize: 38.sp,
                  color: Colors.white,
                  fontWeight: FontWeight.w600)),
          centerTitle: true),
      body: Stack(
        children: [
          Image.asset(PathConfig.imageWalletBg,fit: BoxFit.cover),
          SafeArea(
                child: Padding(
                    padding: EdgeInsets.all(40.w),
                    child:
                        Column(mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [
                      _accountBalance(),
                      SizedBox(height: 80.h),
                      Text(S.current.q13,
                          style: TextStyle(fontSize: 30.sp, color: Color(0xff333333), fontWeight: FontWeight.w600)),
                      SizedBox(height: setHeight(20)),
                      _billList(),
                      SizedBox(height: 60.h),
                      Text(S.current.q14,
                          style: TextStyle(fontSize: 30.sp, color: Color(0xff333333), fontWeight: FontWeight.w600)),
                      SizedBox(height: 25.h),
                      _services(),
                    ])))
          ],
      )
    );
  }
相关推荐
原来455 小时前
配置 Android Studio && cursor/vscode 环境(切换 Flutter 版本)
android·vscode·flutter·android studio·sdk
草明5 小时前
Flutter EventBus
前端·javascript·flutter
兰琛5 小时前
Flutter 1.2:flutter配置gradle环境
android·flutter
sunly_17 小时前
Flutter:GetBuilder页面模板,可复用,视图,控制器分离
flutter
草明18 小时前
在 Flutter 中,Image.asset 从其他包中加载资源
前端·javascript·flutter
sunly_1 天前
Flutter:encrypt插件 AES加密处理
java·javascript·flutter
Summer不秃2 天前
Flutter实现tts语音播报
flutter
MavenTalk3 天前
前端技术选型之uniapp
android·前端·flutter·ios·uni-app·前端开发
sunly_4 天前
Flutter:启动屏逻辑处理01:修改默认APP启动图标
flutter