Here is an example of how to rotate text in flutter. We are going to use RotatedBox widget to achieve this.
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