├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── doc ├── expandable_demo_small.gif └── migration.md ├── example ├── .gitignore ├── .metadata ├── README.md ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── lib └── expandable.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:pedantic/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /doc/expandable_demo_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/doc/expandable_demo_small.gif -------------------------------------------------------------------------------- /doc/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/doc/migration.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/README.md -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/expandable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/lib/expandable.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryzhov/flutter-expandable/HEAD/pubspec.yaml --------------------------------------------------------------------------------