美文网首页
Flutter-AppBar组件

Flutter-AppBar组件

作者: 阿博聊编程 | 来源:发表于2022-05-21 10:06 被阅读0次
    配图来自网络,如侵必删

    Flutter开发当中,我们可能会遇到以下的需求:

    实现顶部栏,展示当前页面的功能

    这个需求就可以用AppBar来实现的。这篇博客主要分享容器组件的AppBar组件的使用,希望对看文章的小伙伴有所帮助。

    简单示例代码

    appBar: AppBar(
            title: Text(widget.title),
          )
    

    效果如下所示:


    image.png

    组件源码

    AppBar({
        Key? key,
        this.leading,
        this.automaticallyImplyLeading = true,
        this.title,
        this.actions,
        this.flexibleSpace,
        this.bottom,
        this.elevation,
        this.shadowColor,
        this.shape,
        this.backgroundColor,
        this.foregroundColor,
        @Deprecated(
          'This property is no longer used, please use systemOverlayStyle instead. '
          'This feature was deprecated after v2.4.0-0.0.pre.',
        )
        this.brightness,
        this.iconTheme,
        this.actionsIconTheme,
        @Deprecated(
          'This property is no longer used, please use toolbarTextStyle and titleTextStyle instead. '
          'This feature was deprecated after v2.4.0-0.0.pre.',
        )
        this.textTheme,
        this.primary = true,
        this.centerTitle,
        this.excludeHeaderSemantics = false,
        this.titleSpacing,
        this.toolbarOpacity = 1.0,
        this.bottomOpacity = 1.0,
        this.toolbarHeight,
        this.leadingWidth,
        @Deprecated(
          'This property is obsolete and is false by default. '
          'This feature was deprecated after v2.4.0-0.0.pre.',
        )
        this.backwardsCompatibility,
        this.toolbarTextStyle,
        this.titleTextStyle,
        this.systemOverlayStyle,
      }) : assert(automaticallyImplyLeading != null),
           assert(elevation == null || elevation >= 0.0),
           assert(primary != null),
           assert(toolbarOpacity != null),
           assert(bottomOpacity != null),
           preferredSize = _PreferredAppBarSize(toolbarHeight, bottom?.preferredSize.height),
           super(key: key);
    

    组件属性说明

    这里针对源码做出相应的属性说明,熟悉控件的属性方便大家的使用。

    属性名称 属性说明
    title 页面标题
    leading 导航图标
    actions 设置顶部菜单
    backgroundColor 设置背景颜色
    elevation 设置阴影的高度,默认是4
    textTheme 文本主题
    centerTitle 标题设置是否居中

    完整的源码

    以下的代码,可以直接复制到编译器去运行,方便小伙伴查看运行结果或者直接使用:

    import 'package:flutter/material.dart';
    
    void main() {
      runApp(const MyApp());
    }
    
    class MyApp extends StatelessWidget {
      const MyApp({Key? key}) : super(key: key);
    
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(
            primarySwatch: Colors.blue,
          ),
          home: const MyHomePage(title: 'AppBar的Demo'),
        );
      }
    }
    
    class MyHomePage extends StatefulWidget {
      const MyHomePage({Key? key, required this.title}) : super(key: key);
    
      final String title;
    
      @override
      State<MyHomePage> createState() => _MyHomePageState();
    }
    
    class _MyHomePageState extends State<MyHomePage> {
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text(widget.title),
          ),
          body: Center(),
        );
      }
    }
    
    

    相关文章

      网友评论

          本文标题:Flutter-AppBar组件

          本文链接:https://www.haomeiwen.com/subject/qwccprtx.html