Flutter使垂直appBar

时间:2019-03-05 21:24:09

标签: flutter appbar

在应用程序中,我想在不同页面中制作一个带有自定义标题的垂直appBar:

我该怎么做?

1 个答案:

答案 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'),
      ),
    );
  }
}