├── .gitignore ├── .pubignore ├── CHANGELOG.md ├── LICENSE ├── README-en.md ├── README.md ├── city_pickers.iml ├── doc └── index.md ├── example ├── .gitignore ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── city_pickers │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── wip.jpeg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── lib │ ├── main.dart │ ├── meta │ │ ├── province.dart │ │ └── province_nm.dart │ ├── src │ │ ├── attr_item_container.dart │ │ ├── color_picker.dart │ │ ├── item_container.dart │ │ ├── location_selector.dart │ │ └── picker.dart │ └── view │ │ ├── show_city_picker.dart │ │ ├── show_full_page_picker.dart │ │ ├── util_getLocationInfo.dart │ │ └── wip.dart ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── lib ├── city_pickers.dart ├── meta │ ├── _province.dart │ └── province.dart ├── modal │ ├── base_citys.dart │ ├── point.dart │ └── result.dart └── src │ ├── base │ ├── base.dart │ └── pickers.dart │ ├── cities_selector │ ├── alpha.dart │ ├── cities_selector.dart │ ├── cities_style.dart │ ├── types.dart │ └── utils.dart │ ├── city_picker.dart │ ├── full_page │ └── full_page.dart │ ├── mod │ ├── inherit_process.dart │ └── picker_popup_route.dart │ ├── show_types.dart │ ├── util.dart │ └── utils │ ├── index.dart │ └── location.dart ├── pubspec.yaml └── test └── unit_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/.gitignore -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- 1 | ./city_pickers.iml 2 | ./lib/meta/_province.dart 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/README.md -------------------------------------------------------------------------------- /city_pickers.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/city_pickers.iml -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/city_pickers/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/kotlin/com/example/city_pickers/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/assets/wip.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/assets/wip.jpeg -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/meta/province.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/meta/province.dart -------------------------------------------------------------------------------- /example/lib/meta/province_nm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/meta/province_nm.dart -------------------------------------------------------------------------------- /example/lib/src/attr_item_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/src/attr_item_container.dart -------------------------------------------------------------------------------- /example/lib/src/color_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/src/color_picker.dart -------------------------------------------------------------------------------- /example/lib/src/item_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/src/item_container.dart -------------------------------------------------------------------------------- /example/lib/src/location_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/src/location_selector.dart -------------------------------------------------------------------------------- /example/lib/src/picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/src/picker.dart -------------------------------------------------------------------------------- /example/lib/view/show_city_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/view/show_city_picker.dart -------------------------------------------------------------------------------- /example/lib/view/show_full_page_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/view/show_full_page_picker.dart -------------------------------------------------------------------------------- /example/lib/view/util_getLocationInfo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/view/util_getLocationInfo.dart -------------------------------------------------------------------------------- /example/lib/view/wip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/lib/view/wip.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/city_pickers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/city_pickers.dart -------------------------------------------------------------------------------- /lib/meta/_province.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/meta/_province.dart -------------------------------------------------------------------------------- /lib/meta/province.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/meta/province.dart -------------------------------------------------------------------------------- /lib/modal/base_citys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/modal/base_citys.dart -------------------------------------------------------------------------------- /lib/modal/point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/modal/point.dart -------------------------------------------------------------------------------- /lib/modal/result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/modal/result.dart -------------------------------------------------------------------------------- /lib/src/base/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/base/base.dart -------------------------------------------------------------------------------- /lib/src/base/pickers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/base/pickers.dart -------------------------------------------------------------------------------- /lib/src/cities_selector/alpha.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/cities_selector/alpha.dart -------------------------------------------------------------------------------- /lib/src/cities_selector/cities_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/cities_selector/cities_selector.dart -------------------------------------------------------------------------------- /lib/src/cities_selector/cities_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/cities_selector/cities_style.dart -------------------------------------------------------------------------------- /lib/src/cities_selector/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/cities_selector/types.dart -------------------------------------------------------------------------------- /lib/src/cities_selector/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/cities_selector/utils.dart -------------------------------------------------------------------------------- /lib/src/city_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/city_picker.dart -------------------------------------------------------------------------------- /lib/src/full_page/full_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/full_page/full_page.dart -------------------------------------------------------------------------------- /lib/src/mod/inherit_process.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/mod/inherit_process.dart -------------------------------------------------------------------------------- /lib/src/mod/picker_popup_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/mod/picker_popup_route.dart -------------------------------------------------------------------------------- /lib/src/show_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/show_types.dart -------------------------------------------------------------------------------- /lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/util.dart -------------------------------------------------------------------------------- /lib/src/utils/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/utils/index.dart -------------------------------------------------------------------------------- /lib/src/utils/location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/lib/src/utils/location.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/unit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxu317317/city_pickers/HEAD/test/unit_test.dart --------------------------------------------------------------------------------