In app I want to make a vertical appBar with custom title in different page:

How I can make it?
You can use RotatedBox to rotate AppBar, but you will not be able to use the parameter of appBar in Scaffold, because that one expects horizontal one.
class VerticalAppBar extends StatelessWidget {
@override
Widget build(BuildContext context) {
return RotatedBox(
quarterTurns: 3,
child: AppBar(
primary: false,
title: Text('My Bar'),
),
);
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With