hetu_script_flutter 0.0.7 hetu_script_flutter: ^0.0.7 copied to clipboard
Extension for Hetu Script. Makes it easier to use Hetu Script in Flutter apps.
Hetu Script for Flutter #
This is an extension for hetu_script.
Getting started #
To load a script file from assets, add the script file's path into your pubspec.yaml like other assets.
The default folder is 'scripts/', directly under your project root.
assets:
- scripts/main.ht
Then those script will be pre-loaded by the new init method on Hetu class: [initFlutter].
You don't need to use old [init]. Also note that this is an async function.
You can load a asset script file by [evalFile] method:
final hetu = Hetu();
await hetu.initFlutter();
final result = hetu.evalFile('main.ht', invokeFunc: 'main');