我是 Flutter 的新手,想创建一个具有 2 个不同文本值的应用栏,请参见下文:
到目前为止,我已经编写了以下代码:
class HomePage extends StatelessWidget {
final double toolbarOpacity = 2.0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar:
PreferredSize(
preferredSize: Size(double.infinity, 114),
child: AppBar(
centerTitle: false,
title: Text(
'My App',
style: TextStyle(
color: titleTextColor,
fontWeight: titleTextFontWeight,
fontFamily: titleFontFamily,
fontSize: titleFontSize),
),
backgroundColor: Color.fromRGBO(232, 232, 242, 1),
),
),
);
}
}
这给了我以下结果:
有人可以指导我材料或帮助我实现我想要的输出吗?
提前致谢。