diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies new file mode 100644 index 0000000..fb42347 --- /dev/null +++ b/.flutter-plugins-dependencies @@ -0,0 +1 @@ +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"google_places_picker","path":"D:\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_places_picker-2.1.0+2\\\\","dependencies":[]},{"name":"image_picker","path":"D:\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\image_picker-0.6.7+2\\\\","dependencies":[]}],"android":[{"name":"flutter_plugin_android_lifecycle","path":"D:\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\flutter_plugin_android_lifecycle-1.0.8\\\\","dependencies":[]},{"name":"google_places_picker","path":"D:\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_places_picker-2.1.0+2\\\\","dependencies":[]},{"name":"image_picker","path":"D:\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\image_picker-0.6.7+2\\\\","dependencies":["flutter_plugin_android_lifecycle"]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"flutter_plugin_android_lifecycle","dependencies":[]},{"name":"google_places_picker","dependencies":[]},{"name":"image_picker","dependencies":["flutter_plugin_android_lifecycle"]}],"date_created":"2020-06-26 22:39:06.633075","version":"1.20.0-1.0.pre"} \ No newline at end of file diff --git a/android/gradle.properties b/android/gradle.properties index 8bd86f6..7be3d8b 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1 +1,2 @@ org.gradle.jvmargs=-Xmx1536M +android.enableR8=true diff --git a/ios/Flutter/flutter_export_environment.sh b/ios/Flutter/flutter_export_environment.sh new file mode 100644 index 0000000..8f3a788 --- /dev/null +++ b/ios/Flutter/flutter_export_environment.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# This is a generated file; do not edit or check into version control. +export "FLUTTER_ROOT=D:\flutter" +export "FLUTTER_APPLICATION_PATH=D:\flutter-ui-nice" +export "FLUTTER_TARGET=lib\main.dart" +export "FLUTTER_BUILD_DIR=build" +export "SYMROOT=${SOURCE_ROOT}/../build\ios" +export "OTHER_LDFLAGS=$(inherited) -framework Flutter" +export "FLUTTER_FRAMEWORK_DIR=D:\flutter\bin\cache\artifacts\engine\ios" +export "FLUTTER_BUILD_NAME=1.0.0" +export "FLUTTER_BUILD_NUMBER=1" +export "DART_OBFUSCATION=false" +export "TRACK_WIDGET_CREATION=false" +export "TREE_SHAKE_ICONS=false" diff --git a/lib/page/signup/SignPageSeven.dart b/lib/page/signup/SignPageSeven.dart index fe43a2a..56e4af7 100644 --- a/lib/page/signup/SignPageSeven.dart +++ b/lib/page/signup/SignPageSeven.dart @@ -62,7 +62,7 @@ class _SignPageSevenState extends State { Future _selectPlace(BuildContext context) async { try { - Place _picker = await PluginGooglePlacePicker.showPlacePicker(); + Place _picker = await PluginGooglePlacePicker.showAutocomplete(); setState(() { _place = _picker; }); diff --git a/lib/page/signup/widgets/location_picker.dart b/lib/page/signup/widgets/location_picker.dart index 9109de9..b7d4d21 100644 --- a/lib/page/signup/widgets/location_picker.dart +++ b/lib/page/signup/widgets/location_picker.dart @@ -12,7 +12,7 @@ class _LocationPickerState extends State { Future _selectPlace(BuildContext context) async { try { - Place _picker = await PluginGooglePlacePicker.showPlacePicker(); + Place _picker = await PluginGooglePlacePicker.showAutocomplete(); setState(() { _place = _picker; }); diff --git a/pubspec.yaml b/pubspec.yaml index f27951e..ee05eb8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -18,10 +18,10 @@ dependencies: # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^0.1.2 - image_picker: ^0.4.10 - intl: ^0.15.7 - google_places_picker: ^0.0.9 + cupertino_icons: ^0.1.3 + image_picker: ^0.6.7+2 + intl: ^0.16.1 + google_places_picker: ^2.1.0+2 dev_dependencies: flutter_test: