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