我有一个AppBarComponent来显示我的应用的应用栏。
class AppBarComponent {
static Widget titleWithImage(String title) {
return Row(
children: <Widget>[
Image.asset(
'logo.png',
fit: BoxFit.contain,
width: 40,
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 10.0),
child: Text('title'),
),
Row(
children: [
Text(
'subtitle',
),
],
),
],
);
}
}
结果是这样的:
但我想要的是在appbar的右边显示副标题。
3条答案
按热度按时间4c8rllxm1#
哦!我已经用
而不是用Row Package 它。
h43kikqp2#
ryevplcw3#
不建议使用Widget函数,而是使用Stateful/Stateless小部件,因此您可以像这样实现它...