Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SuavePirate/MarkdownTextView
A Xamarin.Forms component to display markdown text in a TextView
https://github.com/SuavePirate/MarkdownTextView
Last synced: 29 days ago
JSON representation
A Xamarin.Forms component to display markdown text in a TextView
- Host: GitHub
- URL: https://github.com/SuavePirate/MarkdownTextView
- Owner: SuavePirate
- License: mit
- Created: 2017-02-23T21:32:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-22T17:14:57.000Z (almost 7 years ago)
- Last Synced: 2024-10-13T01:19:34.166Z (2 months ago)
- Language: C#
- Size: 256 KB
- Stars: 50
- Watchers: 5
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xamarin-forms - MarkdownTextView ★50
README
# MarkdownTextView
![alt tag](https://alexdunndev.files.wordpress.com/2017/02/xamagonmarkdown.png?w=1462)
A Xamarin.Forms component to display markdown text in a TextView
# InstallationNow on NuGet!
`Install-Package MarkdownTextView.Forms`
https://www.nuget.org/packages/MarkdownTextView.Forms
## Usage
- Call `Init` before calling `Xamarin.Forms.Init()`
- iOS: SPControls.MarkdownTextView.iOS.MarkdownTextView.Init();
- Android: SPControls.MarkdownTextView.Droid.MarkdownTextView.Init();
- Use the control
- In Xaml:```
```
- or in C#:
```
var mdTextView = new MarkdownTextView();
mdTextView.Markdown = "# this is my *header* tag";
```
## TODO
- Add other properties for updating markdown settings
- Add text color settings
- Add UWP Support# Sponsors