3 Commits

Author SHA1 Message Date
dd36ab8399 update 2024-03-09 11:59:42 +05:30
b37a33bc2f update versionto 33 2024-03-08 19:17:31 +05:30
e35608651b fix goal reset 2024-03-08 19:14:03 +05:30
3 changed files with 4 additions and 3 deletions

View File

@ -191,7 +191,8 @@ class CameraPage extends StatelessWidget {
Get.back();
destinationController.skipGps = false;
Get.snackbar("目標が保存されました", "目標が正常に追加されました");
destinationController.resetRogaining();
destinationController.resetRogaining(
isgoal: true);
} else {
//print("---- status ${value['status']} ---- ");
Get.snackbar("目標が追加されていません", "please_try_again");

View File

@ -782,7 +782,7 @@ class DestinationController extends GetxController {
void handleLocationUpdate(LocationMarkerPosition? position) async {
try {
if (position != null) {
if (distanceToStart() >= 1000) {
if (distanceToStart() >= 150) {
ready_for_goal = true;
}

View File

@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.32+32
version: 1.0.33+33
environment:
sdk: ">=3.1.0 <4.0.0"