📜  颤振基线 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:04.893000             🧑  作者: Mango

代码示例2
Row(
          children: [
            Text('Row 1',style:TextStyle(fontSize: 32)),
            Baseline(
            baseline: 25.0,
            baselineType: TextBaseline.alphabetic,
            child: Text('Row  2')),
          ],
        )