A minimal Flutter embedder implementation for Tizen inspired by flutter_from_scratch.
The following features are supported as of now:
- Render to display
- Process touch inputs
-
First build the Flutter engine by following this guide. The same toolchain as used for building the engine is used for building the embedder.
-
Replace
libflutter_engine.so,icudtl.datandflutter_embedder.hfiles in theoutdirectory with what you've just built. -
In
BUILD.gn, make sure you have specififedtoolchain_pathandsysroot_pathvalues correctly. -
Run
./gn gen out. -
Run
ninja -C out. If successful,libflutter_embedder.sois generated in theoutdirectory. -
See
exampleto run a sample application withlibflutter_embedder.so.