gpt4 book ai didi

flutter - 盒子上的 Assets 图像

转载 作者:行者123 更新时间:2023-12-05 06:47:18 26 4
gpt4 key购买 nike

我尝试使用 ClipRRect 和 AssetImage 在圆角框上 Assets 图像,

Widget drawingSelection(String indexedImage) {
Widget result = Align(
alignment: Alignment(0.0, 0.0),
child: SizedBox(
width: 300.0,
height: 175.0,
child: ClipRRect(
borderRadius: BorderRadius.circular(36.0),
child: Container(
child: Image(image: AssetImage(indexedImage),),
decoration: BoxDecoration(
color: Colors.white,
),
),
),
),
);
return result;
}

它说无法 Assets 我的形象,当然我检查了 pub.yaml 似乎没问题。.(仅供引用,indexedImage = aa.jpg)..任何人都可以帮助我的圆框上的 Assets 图像吗?

最佳答案

我看到你通过了 indexedImage = aa.jpg

路径是否指向该图像?因为典型的路径是这样的

.
.
child: drawingSelection('assets/aa.jpg'), //change assets name to your folder name
.
.

如果还是不行?请附上你的 pubspec.yaml 文件好吗?

关于flutter - 盒子上的 Assets 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67148106/

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