How to create Circle avatar with gradient color outline in flutter
here is the example out put i want here is what i tried const CircleAvatar( maxRadius: 40, backgroundColor: AppColor.pink, child: CircleAvatar( maxRadius: 38, backgroundColor: Colors.white, child: Icon( CupertinoIcons.heart_fill, size: 50, color: AppColor.pink, ), ), ) but this is just normal…