gpt4 book ai didi

image - Flutter 中任何圆形图像重叠插件

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

Flutter有没有什么插件可以实现Instagram点赞的人头像预览之类的功能?

enter image description here

最佳答案

没有插件,但您可以使用堆栈中的圆形头像(带白色边框)制作自定义插件。

class CustomAvatars extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
width: 80,
height: 40,
color: Colors.white,
child: Stack(
children: <Widget>[
Align(
alignment: Alignment.centerRight,
child: CircleAvatar(
backgroundColor: Colors.white,
child: CircleAvatar(
radius: 18,
backgroundColor: Colors.red,
child: Image.asset('assets\image'), // Provide your custom image
),
),
),
Align(
alignment: Alignment.center,
child: CircleAvatar(
backgroundColor: Colors.white,
child: CircleAvatar(
radius: 18,
backgroundColor: Colors.red,
child: Image.asset('assets\image'), // Provide your custom image
),
),
),
Align(
alignment: Alignment.centerLeft,
child: CircleAvatar(
backgroundColor: Colors.white,
child: CircleAvatar(
radius: 18,
backgroundColor: Colors.red,
child: Image.asset('assets\image'), // Provide your custom image
),
),
),
],
),
);
}
}

关于image - Flutter 中任何圆形图像重叠插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62447912/

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