1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| Container( decoration: BoxDecoration( borderRadius: BorderRadius.all( Radius.circular(100), ), boxShadow: [ BoxShadow( color: Colors.red, spreadRadius: 7, blurRadius: 7, offset: Offset(3, 5), ), ], ), child: Icon( Icons.camera_alt, color: Colors.white, size: 60.w, ), ),
|