我将如何做一个侧面的 NavBar,它也有横向的文字

How would I do a side NavBar that also has words sideways

我看到过单词是水平的,但不是垂直的。有没有办法在 Flutter 中实现这一点?

您可以使用RotatedBox

new RotatedBox(
  quarterTurns: 1,
  child: new Text("Lorem ipsum")
)