gpt4 book ai didi

android - 使用图像作为自定义形状卡片/ Material 小部件的背景

转载 作者:行者123 更新时间:2023-12-05 00:12:05 28 4
gpt4 key购买 nike

有一个 ContinuousRectangleBorder 绘画,我可以将其传递给 CardMaterial 小部件的形状参数。

Material(
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
elevation: 4,
color: theme.primaryColor,
child: image,
borderOnForeground: true,
)

但在 android 中,如果我将图像传递给小部件,则该图像不会作为父级进行剪辑。裁剪具有相同形状的图像的最佳方法是什么?

最佳答案

试试这个:

 Material(
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
elevation: 4,
color: theme.primaryColor,
child: image,
borderOnForeground: true,
clipBehavior: Clip.antiAliasWithSaveLayer,
)

关于android - 使用图像作为自定义形状卡片/ Material 小部件的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63115645/

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