Answers for "flutter rotate icn"

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
0

flutter rotate image

new RotationTransition(
  turns: new AlwaysStoppedAnimation(15 / 360),
  child: new Text("Lorem ipsum"),
)
Posted by: Guest on October-22-2021

Browse Popular Code Answers by Language