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.dat
andflutter_embedder.h
files in theout
directory with what you've just built. -
In
BUILD.gn
, make sure you have specififedtoolchain_path
andsysroot_path
values correctly. -
Run
./gn gen out
. -
Run
ninja -C out
. If successful,libflutter_embedder.so
is generated in theout
directory. -
See
example
to run a sample application withlibflutter_embedder.so
.