tex_markdown

Creator: coderz1093

Last updated:

Add to Cart

Description:

tex markdown

This is a flutter package to create markdown widget. with Latex math formula support and also simple to use package.
Features #
You can create simple markdown view by this package.
At this moment this package supports:


List
- Unordered list item
1. Ordered list item
copied to clipboard


Horizontal line
---
copied to clipboard


Links
[<text here>](<href>)
copied to clipboard


Images with size
![<with>x<hight> someText](url)
copied to clipboard


Table
| Name | Roll |
| sohag | 1 |

copied to clipboard



Name
Roll




sohag
1





Bolt text
**Bolt text**
copied to clipboard


Italic text
*Italic text*
copied to clipboard


heading texts
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
copied to clipboard


Latex formula $\frac a b$
$\frac a b$
copied to clipboard


Radio button and checkbox
() Unchecked radio
(x) Checked radio
[] Unchecked checkbox
[x] Checked checkbox
copied to clipboard


Getting started #
Run this command:
flutter pub add tex_markdown
copied to clipboard
Usage #
Check the documentation here.
import 'package:flutter/material.dart';
import 'package:tex_markdown/tex_markdown.dart';

return TexMarkdown(
'''
* This is a unordered list.
''',
style: const TextStyle(
color: Colors.red,
),

copied to clipboard
Additional information #
You can find the source code here.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.