Files
skills/skills/create-flutter-app-native-ui/examples/web/flutter_bootstrap.js
T
rodydavis 5cc939e120
Update README / update-readme (push) Successful in 7s
feat: Add create-flutter-app-native-ui skill
2026-06-27 20:47:13 -07:00

13 lines
292 B
JavaScript

{{flutter_js}}
{{flutter_build_config}}
_flutter.loader.load({
onEntrypointLoaded: function(engineInitializer) {
engineInitializer.initializeEngine({
hostElement: document.getElementById('flutter-host')
}).then(function(appRunner) {
appRunner.runApp();
});
}
});