gpt4 book ai didi

flutter - 如何在 Appbar 上制作不同对齐方式的一些图标?

转载 作者:IT王子 更新时间:2023-10-29 06:38:04 36 4
gpt4 key购买 nike

我遇到了一些问题。我想在 AppBar 中制作一个图像、一个文本和两个图标,但我不能让它按我想要的方式工作。

我试着在图像和文本之后连续制作一些字体。图片和文本成功显示在我的 AppBar 中,但其余 2 种字体(手推车和通知)显示一些错误。

Widget build(BuildContext context) {
return new Scaffold(
backgroundColor: Colors.amber,
appBar: new AppBar
(
title: new Row
(
mainAxisAlignment: MainAxisAlignment.start,
children:
[
Image.asset('images/logoapp.png',fit: BoxFit.contain,height: 32,),
Container(padding: const EdgeInsets.all(8.0), child: Text('Solid Shop'))
],
)

),

....

最佳答案

使用 leading 在 appBar title 之前设置一个小部件,并使用 actions 指定 appBar 中显示在 appBar title 右侧的小部件列表。

AppBar(
leading: Image.asset('yourImage'), // you can put Icon as well, it accepts any widget.
title: Text ("Your Title"),
actions: [
Icon(Icons.add),
Icon(Icons.add),
],
);

阅读更多相关信息 here

关于flutter - 如何在 Appbar 上制作不同对齐方式的一些图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55414261/

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