Flutter入门实践

006.0 flutter中的StrutStyle是什么

2020-03-28  本文已影响0人  码农二哥

说明:几乎整个内容都是抄的,理解一下就好,原文参考处有链接。

先来理解一下这张图(字体)

image.png

解释

如何控制这个高度呢?


You can change the vertical size of the strut by using a multiplier.

const Text(
  'My text',            // use 'My text \nMy text' to see multiple lines
  style: TextStyle(
    fontSize: 10,
    fontFamily: 'Roboto',
  ),
  strutStyle: StrutStyle(
    fontFamily: 'Roboto',
    fontSize: 14,
    height: 1.7,
    leading: 1.7,
  ),
),
image.png

参考

上一篇 下一篇

猜你喜欢

热点阅读