Flutter-有没有办法设置所有AppBars高程

Kod*_*ata 3 dart flutter

我想集中的所有网页AppBarelevation为0.
我一定要单独设置?
或者有没有办法将其设置为所有页面?
先感谢您!

Cop*_*oad 9

这是一个简单的方法。

MaterialApp(
  theme: ThemeData(
    appBarTheme: AppBarTheme(elevation: 0)
  ),
) 
Run Code Online (Sandbox Code Playgroud)


die*_*per 6

创建自己的AppBar小部件并在所有屏幕中使用它

  import 'package:flutter/material.dart';

  class MyAppBar extends AppBar {
    MyAppBar(
        {Key key,
       Widget title,
        Color backgroundColor,
        List<Widget> actions,
        PreferredSizeWidget bottom})
        : super(
            backgroundColor: backgroundColor,
            title: title,
            actions: actions,
            bottom: bottom,
            elevation:
                0.0,
          );
  }
Run Code Online (Sandbox Code Playgroud)