tickml

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

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 #

License

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

Files In This Product:

Customer Reviews

There are no reviews.