An open API service indexing awesome lists of open source software.

https://github.com/swift-kim/toy-embedder

Flutter embedder for Tizen
https://github.com/swift-kim/toy-embedder

flutter tizen

Last synced: about 1 month ago
JSON representation

Flutter embedder for Tizen

Awesome Lists containing this project

README

          

# Flutter on Tizen

A minimal Flutter embedder implementation for Tizen inspired by [flutter_from_scratch](https://github.com/chinmaygarde/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](https://gist.github.com/swift-kim/f2eb9d59695188ea5ee5ea391ce38a0a). 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`](example) to run a sample application with `libflutter_embedder.so`.