├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── assets │ ├── animated_loading.gif │ ├── color-palette.jpg │ ├── flutter_icon.png │ ├── lamp-product.png │ ├── splash-animation-top-down.2019-09-09 11_12_06.gif │ └── splash-animation-zoom-out.2019-09-09 11_18_24.gif └── main.dart ├── lib └── custom_splash.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [0.0.2] - 09/09/2019. 2 | 3 | * Update custom animation funciton. 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache 2.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/README.md -------------------------------------------------------------------------------- /example/assets/animated_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/animated_loading.gif -------------------------------------------------------------------------------- /example/assets/color-palette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/color-palette.jpg -------------------------------------------------------------------------------- /example/assets/flutter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/flutter_icon.png -------------------------------------------------------------------------------- /example/assets/lamp-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/lamp-product.png -------------------------------------------------------------------------------- /example/assets/splash-animation-top-down.2019-09-09 11_12_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/splash-animation-top-down.2019-09-09 11_12_06.gif -------------------------------------------------------------------------------- /example/assets/splash-animation-zoom-out.2019-09-09 11_18_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/assets/splash-animation-zoom-out.2019-09-09 11_18_24.gif -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/custom_splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/lib/custom_splash.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tranhuycong/custom_splash/HEAD/pubspec.yaml --------------------------------------------------------------------------------