├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bin └── flutterfx ├── config-common.sh ├── flutter-gallery-on-fuchsia.png └── flutterfx /.gitignore: -------------------------------------------------------------------------------- 1 | /.pub-cache -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/README.md -------------------------------------------------------------------------------- /bin/flutterfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/bin/flutterfx -------------------------------------------------------------------------------- /config-common.sh: -------------------------------------------------------------------------------- 1 | USE_MODIFIED_FLUTTER=1 2 | -------------------------------------------------------------------------------- /flutter-gallery-on-fuchsia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/flutter-gallery-on-fuchsia.png -------------------------------------------------------------------------------- /flutterfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellee8/flutter_fuchsia_toolchain/HEAD/flutterfx --------------------------------------------------------------------------------