我正在尝试将AppBar存储在变量中以使用多个位置
我的main.dart文件包含-
final PreferredSizeWidget appBar = NavigationAppBar(_actionCall)
并且navigation_app_bar包含-
class NavigationAppBar extends StatelessWidget with PreferredSizeWidget {
final Function actionCall;
NavigationAppBar(this.actionCall);
@override
Widget build(BuildContext context) {
return Platform.isIOS ?
CupertinoNavigationBar(
middle: Text(
'ABC'
),
trailing: Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
GestureDetector(
child: Icon(CupertinoIcons.add),
onTap: () => actionCall,
)
],
),
) :
AppBar(
title: Text('ABC'),
centerTitle: false,
actions: <Widget>[
IconButton(
icon: Icon(Icons.add),
onPressed: () => actionCall,
)
],
);
}
@override
Size get preferredSize => Size.fromHeight(kToolbarHeight);
}
但是在尝试运行我的Flutter应用程序时出现以下错误。
type 'NavigationAppBar' is not a subtype of type 'ObstructingPreferredSizeWidget'
我该如何解决这个问题?任何帮助都将受到赞赏。