在应用程序中,我想在不同页面中制作一个带有自定义标题的垂直appBar:
我该怎么做?
答案 0 :(得分:2)
您可以使用RotatedBox
来旋转AppBar
,但是您将无法使用appBar
中的Scaffold
的参数,因为该参数需要水平的。< / p>
class VerticalAppBar extends StatelessWidget {
@override
Widget build(BuildContext context) {
return RotatedBox(
quarterTurns: 3,
child: AppBar(
primary: false,
title: Text('My Bar'),
),
);
}
}