-
Notifications
You must be signed in to change notification settings - Fork 80
Open
Labels
bugIdentifies reported bugs or unexpected behavior.Identifies reported bugs or unexpected behavior.
Description
Writing markdown ordered list, e.g:
- Something
- Something else
results in numbers on the left rendered differently, even though color is set properly:
GptMarkdownTheme _getTermsOfUseMarkdown(
BuildContext context,
) => GptMarkdownTheme(
gptThemeData: GptMarkdownTheme.of(context).copyWith(
h3: HeadlineTextStyle,
),
child: GptMarkdown(
Strings.current.termsOfUse,
style: BodyTextStyle,
),
);Enforcing fontFamily here, in BodyTextStyle, fixes the issue, but requires having same font on both ios and android devices.
Metadata
Metadata
Assignees
Labels
bugIdentifies reported bugs or unexpected behavior.Identifies reported bugs or unexpected behavior.