├── .gitignore ├── .idea ├── encodings.xml ├── libraries │ ├── Dart_Packages.xml │ ├── Dart_SDK.xml │ └── Flutter_Plugins.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── app │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── flutter │ │ └── plugins │ │ └── GeneratedPluginRegistrant.java └── local.properties ├── example └── main.dart ├── lib ├── splash_tap.dart └── src │ └── splash.dart ├── pubspec.lock ├── pubspec.yaml └── splash_tap.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_Packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/libraries/Dart_Packages.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/libraries/Flutter_Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/libraries/Flutter_Plugins.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/android/local.properties -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/splash_tap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/lib/splash_tap.dart -------------------------------------------------------------------------------- /lib/src/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/lib/src/splash.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /splash_tap.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funwithflutter/splash_tap/HEAD/splash_tap.iml --------------------------------------------------------------------------------