20240903 pre release
This commit is contained in:
@ -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())
|
||||
],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user