跳至主內容區

XOOPS輕鬆架

:::

主內容區域

選擇後會自動跳轉頁面

6-9 中文直書

class VerticalChinese extends StatelessWidget {
  final TextStyle textStyle;
  final String text;

  VerticalChinese({@required this.text, @required this.textStyle, Key key})
      : assert(text != null),
        assert(textStyle != null),
        super(key: key);

  @override
  Widget build(BuildContext context) {
    List<Text> textList = text.split('').map((e)=>Text(e, style: textStyle,)).toList();
    print(textList);
    return Wrap(
      direction: Axis.vertical,
      children: textList,
    );
  }
}

 

選擇後會自動跳轉頁面

:::

左邊區域內容

書籍目錄

展開 | 闔起

快速登入


右邊區域內容

請掃此 QR Code 可連至此頁面

計數器

今天: 3847384738473847
昨天: 3110311031103110
總計: 9477872947787294778729477872947787294778729477872

頁尾區域