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