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. -
Open the
BUILD.gn
file and updatetoolchain_path
andsysroot_path
values if required. -
Run
./gn gen out
. -
Run
ninja -C out
. If successful,libflutter_embedder.so
is generated in theout
directory. -
See
test
to run a sample application withlibflutter_embedder.so
.