Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 373 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 373 Bytes

markdown_core

Parse markdown and render it into rich text.

show

Markdown(
    data: markdownDataString,
    linkTap: (link) => print('点击了链接 $link'),
    textStyle: // your text style ,
    image: (imageUrl) {
      print('imageUrl $imageUrl');
      return // Your image widget ;
    },
)