mirror of
https://github.com/flutter/packages.git
synced 2025-07-01 07:08:10 +08:00
Fix baseline in lists (#170)
This commit is contained in:
@ -264,8 +264,10 @@ class MarkdownBuilder implements md.NodeVisitor {
|
||||
} else {
|
||||
bullet = _buildBullet(_listIndents.last);
|
||||
}
|
||||
// See #147 and #169
|
||||
child = Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start, // See #147
|
||||
textBaseline: TextBaseline.alphabetic,
|
||||
crossAxisAlignment: CrossAxisAlignment.baseline,
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
width: styleSheet.listIndent,
|
||||
|
Reference in New Issue
Block a user