...
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?> <widget xmlns="http://www.w3.org/ns/widgets" id="webapps-flutter-particles" version="0.0.0"> <name>FlutterDemo</name> <icon src="icon.svg"/> <content src="index.html" type="text/html"/> <description>HTML5 Mediaplayer demo</description> <author>Igalia, S.L.</author> <license>APL 2.0</license> <feature name="urn:AGL:widget:required-permission"> <param name="urn:AGL:permission::public:no-htdocs" value="required" /> <param name="urn:AGL:permission::public:display" value="required" /> </feature> <feature name="urn:AGL:widget:required-api"> <param name="homescreen" value="ws" /> </feature> </widget |
Flutter animations sample:
View file | ||||
---|---|---|---|---|
|
To access the current appFw apis used by the html5 webaaps, a wrapper needs to be implemented. Dart provides a js interop library that can be used to implemented such wrapper. Here's the current work in progress:
...