提交 254c6699 authored 作者: shixiaochen's avatar shixiaochen

1、升级库:keyboard_actions

上级 85f93bcd
...@@ -9,6 +9,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget { ...@@ -9,6 +9,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget {
final List<Widget>? actions; final List<Widget>? actions;
final bool exitApp; final bool exitApp;
final Widget? leading; final Widget? leading;
final double? elevation;
const MyPageAppBar({ const MyPageAppBar({
Key? key, Key? key,
...@@ -20,6 +21,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget { ...@@ -20,6 +21,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget {
this.actions, this.actions,
this.exitApp = false, this.exitApp = false,
this.leading, this.leading,
this.elevation,
}) : super(key: key); }) : super(key: key);
@override @override
...@@ -32,6 +34,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget { ...@@ -32,6 +34,7 @@ class MyPageAppBar extends StatelessWidget implements PreferredSizeWidget {
primary: primary, primary: primary,
actions: actions, actions: actions,
leading: leading, leading: leading,
elevation: elevation,
); );
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论