Here is an example of how to rotate text in flutter. We are going to use RotatedBox widget to achieve this.
![](https://fluttercentral.com/Uploads/075f1adf-7c28-46f2-9f93-c5dc072baa25.png)
You can experiment more by updating quarterTurns value. It will just rotate more.
Here is the complete code.
import 'package:flutter/material.dart';
main(List<String> args) {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@
override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(body: MyHomePage()),
);
}
}
class MyHomePage extends StatelessWidget {
@
override
Widget build(BuildContext context) {
return Center(
child: RotatedBox(
quarterTurns: 3,
child: Text(
'Hello World!',
style: TextStyle(fontSize: 50),
),
),
);
}
}
Thanks,Srikanth