├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .pubignore ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── lib │ ├── main.dart │ ├── menu_value.dart │ ├── screen.dart │ ├── sidemenu_builder_screen.dart │ └── sidemenu_screen.dart ├── pubspec.lock └── pubspec.yaml ├── lib ├── side_menu_animation.dart └── src │ └── circular_apearing.dart ├── pubspec.lock ├── pubspec.yaml ├── side_menu_animation.iml └── test └── side_menu_animation_test.dart /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/.pubignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/menu_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/lib/menu_value.dart -------------------------------------------------------------------------------- /example/lib/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/lib/screen.dart -------------------------------------------------------------------------------- /example/lib/sidemenu_builder_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/lib/sidemenu_builder_screen.dart -------------------------------------------------------------------------------- /example/lib/sidemenu_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/lib/sidemenu_screen.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/side_menu_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/lib/side_menu_animation.dart -------------------------------------------------------------------------------- /lib/src/circular_apearing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/lib/src/circular_apearing.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /side_menu_animation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/side_menu_animation.iml -------------------------------------------------------------------------------- /test/side_menu_animation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoveloper/flutter_side_menu_animation/HEAD/test/side_menu_animation_test.dart --------------------------------------------------------------------------------