scaffold add appBar
null_safety
小赖 4 years ago
parent 8a46810b45
commit 8d08e187e8

@ -30,6 +30,9 @@ class ASScaffold extends StatefulWidget {
///
///
final Widget endDrawer;
/// `AppBar` appBar
final Widget appBar;
ASScaffold({
Key key,
@required this.title,
@ -38,6 +41,7 @@ class ASScaffold extends StatefulWidget {
this.bottomNavigationBar,
this.appBarBottom,
this.endDrawer,
this.appBar,
}) : super(key: key);
@override
@ -51,7 +55,8 @@ class _ASScaffoldState extends State<ASScaffold> {
endDrawer: widget.endDrawer,
backgroundColor: kBackgroundColor,
bottomNavigationBar: widget.bottomNavigationBar,
appBar: AppBar(
appBar: widget.appBar ??
AppBar(
brightness: Brightness.light,
backgroundColor: kForegroundColor,
elevation: 0,

@ -1,6 +1,6 @@
name: ansu_ui
description: A new Flutter package.
version: 0.0.2
version: 0.0.3
author:
environment:

Loading…
Cancel
Save