Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 934 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 934 Bytes

Flutter on Tizen

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

How to use

  1. First build the Flutter engine by following this guide. The same toolchain as used for building the engine is used for building the embedder.

  2. Replace libflutter_engine.so, icudtl.dat and flutter_embedder.h files in the out directory with what you've just built.

  3. In BUILD.gn, make sure you have specififed toolchain_path and sysroot_path values correctly.

  4. Run ./gn gen out.

  5. Run ninja -C out. If successful, libflutter_embedder.so is generated in the out directory.

  6. See example to run a sample application with libflutter_embedder.so.