0 purchases
tickml
TickML #
TickML is a markup language for flutter and scripts powered by Hetu Script.
Usage #
Install #
Add the following to your pubspec.yaml file:
dependencies:
tickml: latest
copied to clipboard
Minimal Example #
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>'
),
),
),
);
}
}
copied to clipboard
Contributers #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.