TickML is a markup language for flutter and scripts powered by Hetu Script.
Add the following to your pubspec.yaml
file:
dependencies:
tickml: ^1.0.1
import 'package:flutter/material.dart';
import 'package:tickml/tickml.dart';
void main() {
runApp(const TickMLApp());
}
class TickMLApp extends StatelessWidget {
const TickMLApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: TickML(
'<text>Hello, World!</text>'
),
),
),
);
}
}