20240903 pre release

This commit is contained in:
2024-09-03 22:17:09 +09:00
parent fe46d46ab6
commit 2c0bb06e74
44 changed files with 610 additions and 154 deletions

View File

@ -311,7 +311,7 @@ class CameraPage extends StatelessWidget {
? ElevatedButton(
style: ElevatedButton.styleFrom(backgroundColor: Colors.red),
onPressed: () async {
await destinationController.makeCheckin(destination, true,
await destinationController.makeCheckin(destination, true, // チェクインボタン
destinationController.photos[0].path);
if( destinationController.isInRog.value==true ) {
destinationController.rogainingCounted.value = true; // ロゲ開始後のみ許可
@ -526,7 +526,7 @@ class CameraPage extends StatelessWidget {
// print(
// "##### current destination ${indexController.currentDestinationFeature[0].sub_loc_id} #######");
await destinationController.makeCheckin(
await destinationController.makeCheckin( // チェックイン確定
indexController.currentDestinationFeature[0],
true,
destinationController.photos[0].path);
@ -551,7 +551,7 @@ class CameraPage extends StatelessWidget {
Navigator.of(context).pop(true); // ここを修正
},
child: const Text("チェックイン"))
child: const Text("チェックイン確定"))
: Container())
],
);