fluttermarkdown

Flutter: flutter_markdown fontSize


Is there any way to change the font size of text when using flutter_markdown? Something like supplying a TextStyle to a Text widget. Thanks!


Solution

  • In 2021 the way to style your main text is:

    Markdown(
        data: "This is the *way*",
        styleSheet: MarkdownStyleSheet.fromTheme(ThemeData(
          textTheme: TextTheme(
              bodyText2: TextStyle(
                  fontSize: 20.0, color: Colors.green)))))),