flutter_syntax_view 0.2.0 flutter_syntax_view: ^0.2.0 copied to clipboard
A SyntaxView Widget which highlights code text according to the programming language syntax using Native Dart code.
flutter_syntax_view #
A SyntaxView Widget which highlights code text according to the programming language syntax using Native Dart code.
Usage #
// Load code text from your assets path.
// Use DefaultAssetBundle. Recommended ( it allows switching asset bundles at runtime ).
String code = "";
DefaultAssetBundle.of(context).loadString('assets/your_code.txt').then((codeText) {
setState(() {
code = codeText;
});
});
SyntaxView(
code: code,
syntax: Syntax.DART,
syntaxTheme: SyntaxTheme.dracula(),
withZoom: true,
);
Supported Syntax #
- ✅ Dart
- ✅ Java
- ✅ Kotlin
- ✅ Swift
- ✅ JAVASCRIPT
- More will be added.
Themes #
TODO #
- ❌ Add More Syntax Support.
- ❌ Add More Themes.
Contributing #
- Please if you are familiar with Regular Expressions in Dart and would like contribute in adding further syntax support. it will be very appreciated!.
Contributors #
- null
Installing #
Features and bugs #
If you face any problems feel free to open an issue at the issue tracker. If you feel the library is missing a feature, please raise a ticket on Github. Pull request are also welcome.