How to add circular image in flutter PDF
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(…