https://github.com/oboard/tickml
TickML is a markup language for flutter and scripts powered by Hetu Script.
https://github.com/oboard/tickml
flutter hetu-script tickml
Last synced: 4 days ago
JSON representation
TickML is a markup language for flutter and scripts powered by Hetu Script.
- Host: GitHub
- URL: https://github.com/oboard/tickml
- Owner: oboard
- License: other
- Created: 2024-06-28T09:26:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-29T08:17:14.000Z (over 1 year ago)
- Last Synced: 2024-08-22T22:26:38.590Z (over 1 year ago)
- Topics: flutter, hetu-script, tickml
- Language: Dart
- Homepage: https://tickml.oboard.eu.org
- Size: 410 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# TickML
TickML is a markup language for [flutter](https://flutter.dev/) and scripts powered by [Hetu Script](https://hetu.dev/).



## Usage
### Install
Add the following to your `pubspec.yaml` file:
```yaml
dependencies:
tickml: ^1.0.1
```
### Minimal Example
```dart
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(
'Hello, World!'
),
),
),
);
}
}
```
## Contributers
