gpt4 book ai didi

flutter - 如何实现垂直方向的文本?

转载 作者:IT王子 更新时间:2023-10-29 07:20:36 24 4
gpt4 key购买 nike

我想用TextDirection实现一个从上到下的文本,但是TextDirection只有两个选项。

enum TextDirection {
/// The text flows from right to left (e.g. Arabic, Hebrew).
rtl,

/// The text flows from left to right (e.g., English, French).
ltr,
}

最佳答案

两种方法都行

Center(
child: Column(mainAxisSize: MainAxisSize.min, children: [
RotatedBox(
child: Text("rotated"),
quarterTurns: 3,
),
Divider(),
Column(
children: "stacked".split('').map((c) => Text(c)).toList(),
)
]),
)

一个是旋转文本。另一种是在列中堆叠字符。

关于flutter - 如何实现垂直方向的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55889072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com