How to add a Round shape image in flutter pdf.
my image Container
code is
Container(
decoration: const BoxDecoration(
shape: BoxShape.circle,
),
child: Image(
image,
height: 70,
width: 70,
)),
I also used DecorationImage
but this is not working
Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
image: DecorationImage(
image: image, fit: BoxFit.cover))),
These 2 methods are not working
What should I do?