├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_CN.md ├── example ├── .gitignore ├── assets │ ├── icon_light_selected.png │ └── icon_light_unselected.png ├── lib │ └── main.dart └── pubspec.yaml ├── lib └── fsuper.dart ├── publish.sh ├── pubspec.yaml └── test └── fsuper_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/README_CN.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/assets/icon_light_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/example/assets/icon_light_selected.png -------------------------------------------------------------------------------- /example/assets/icon_light_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/example/assets/icon_light_unselected.png -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/fsuper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/lib/fsuper.dart -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/publish.sh -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/fsuper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fliggy-Mobile/fsuper/HEAD/test/fsuper_test.dart --------------------------------------------------------------------------------