hetu_script_flutter 0.0.8 copy "hetu_script_flutter: ^0.0.8" to clipboard
hetu_script_flutter: ^0.0.8 copied to clipboard

outdated

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');
2
likes
0
pub points
66%
popularity

Publisher

verified publisherhetu.dev

Extension for Hetu Script. Makes it easier to use Hetu Script in Flutter apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, hetu_script, path

More

Packages that depend on hetu_script_flutter