簡體   English   中英

flutter scaffold appbar 是灰色的

[英]flutter scaffold appbar is grey

當我制作 StatefulWidget 並返回腳手架時,我遇到了顫振腳手架的問題,出現了一個奇怪的灰色應用欄,我嘗試像這樣從應用欄禁用它

return Scaffold(
      extendBodyBehindAppBar: true,
      appBar: AppBar(
        backgroundColor: Colors.transparent,
        elevation: 0,
      ),

但無濟於事,這是顯示問題的圖像在此處輸入圖片說明

嘿伙計們,我找到了您只需要像這樣編輯狀態欄顏色的解決方案

import 'package:flutter/services.dart';

class WelcomeScreen extends StatefulWidget {
  @override
  _WelcomeScreenState createState() => _WelcomeScreenState();
}

class _WelcomeScreenState extends State<WelcomeScreen> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      extendBodyBehindAppBar: true,
      appBar: AppBar(
        systemOverlayStyle: SystemUiOverlayStyle(statusBarColor: Colors.transparent),
        elevation: 0,
        backgroundColor: Colors.transparent,
      ),
    )
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM