fix display text issue
This commit is contained in:
@ -223,9 +223,9 @@ class CameraPage extends StatelessWidget {
|
||||
appBar: destinationController.is_in_rog.value &&
|
||||
destinationController.rogaining_counted.value == true
|
||||
? AppBar(
|
||||
title: destination!.cp == -1
|
||||
title: destination.cp == -1
|
||||
? Text("finishing_rogaining".tr)
|
||||
: Text("${destination!.sub_loc_id} : ${destination!.name}".tr),
|
||||
: Text("${destination.sub_loc_id} : ${destination.name}"),
|
||||
leading: IconButton(
|
||||
icon: Text("cancel".tr),
|
||||
onPressed: () {
|
||||
@ -240,7 +240,7 @@ class CameraPage extends StatelessWidget {
|
||||
centerTitle: true,
|
||||
)
|
||||
: AppBar(
|
||||
title: const Text("チェックポイント"),
|
||||
title: Text("${destination.sub_loc_id} : ${destination.name}"),
|
||||
),
|
||||
body: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||
|
||||
Reference in New Issue
Block a user