Answers for "flutter rotate icon on tap"

2

how to rotate icon or text in flutter

Transform.rotate(
                 angle: 50, //set the angel 
                 child: Icon(Icons.format_bold,size: 50,
                 color: Colors.white,
                 ),
               ),
Posted by: Guest on March-04-2021
4

How do I rotate widget in flutter?

RotatedBox(
            quarterTurns:3,
            child: Text('Hello World!'),
          ),
Posted by: Guest on September-06-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language