├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── lib └── flutter_router.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [1.2.0] - 10.10.2023 2 | 3 | * Added route settings to params 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/README.md -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/flutter_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/lib/flutter_router.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzagoranski/flutter_router/HEAD/pubspec.yaml --------------------------------------------------------------------------------