gpt4 book ai didi

flutter - 我想为我所有的屏幕创建一个固定的 Appbar

转载 作者:IT王子 更新时间:2023-10-29 07:14:59 26 4
gpt4 key购买 nike

我正在尝试为我的所有屏幕使用相同的 Appbar,但我不想多次添加相同的代码,因此我考虑创建具有默认 Appbar 的类 MyAppbar,以便我可以使用它在我的屏幕上没有重复相同的代码,但我不知道我错过了什么,因为它给了我以下错误:

The method 'Appbar' isn't defined for the class 'MyAppbar'. Try correcting the name to the name of an existing method, or defining a method named 'Appbar'.

这是我的代码:

class MyAppbar extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Appbar(
centerTitle: true,
title: Center(
child: Text("Title", style: TextStyle(fontFamily: 'theboldfont'))),
actions: <Widget>[
IconButton(
icon: Icon(FontAwesomeIcons.bell),
onPressed: () {
}),
IconButton(
icon: CircleAvatar(
radius: 15,
backgroundImage: AssetImage("images/example.png")),
onPressed: () {}),
]);
}
}

谁能帮我解决这个错误?

谢谢!

最佳答案

我相信你有一个语法错误。是 AppBar,不是 Appbar

关于flutter - 我想为我所有的屏幕创建一个固定的 Appbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57664259/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com