├── .gitignore ├── CMakeLists.txt ├── README.md └── src ├── common.h ├── flutter └── embedder.h ├── flutter_hadk.cpp ├── flutter_hadk.h ├── hadk ├── binding │ ├── binding.cpp │ └── binding.h ├── hadk.h └── include │ └── hadk │ ├── input.h │ └── native_window.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/README.md -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/common.h -------------------------------------------------------------------------------- /src/flutter/embedder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/flutter/embedder.h -------------------------------------------------------------------------------- /src/flutter_hadk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/flutter_hadk.cpp -------------------------------------------------------------------------------- /src/flutter_hadk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/flutter_hadk.h -------------------------------------------------------------------------------- /src/hadk/binding/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/hadk/binding/binding.cpp -------------------------------------------------------------------------------- /src/hadk/binding/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/hadk/binding/binding.h -------------------------------------------------------------------------------- /src/hadk/hadk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/hadk/hadk.h -------------------------------------------------------------------------------- /src/hadk/include/hadk/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/hadk/include/hadk/input.h -------------------------------------------------------------------------------- /src/hadk/include/hadk/native_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/hadk/include/hadk/native_window.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boot2Flutter/flutter-hadk/HEAD/src/main.cpp --------------------------------------------------------------------------------