version 4.8.17 -- カレンダーで今日以降しか選べないようにした
This commit is contained in:
@ -382,7 +382,7 @@ class BottomSheetNew extends GetView<BottomSheetController> {
|
||||
? "in_game".tr
|
||||
: isAlreadyCheckedIn == true
|
||||
? "in_game".tr
|
||||
: destinationController.isInRog.value == true
|
||||
: (destinationController.isInRog.value == true || (destination.buy_point != null && destination.buy_point! > 0))
|
||||
? "checkin".tr
|
||||
: "rogaining_not_started".tr,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSecondary),
|
||||
@ -564,7 +564,7 @@ class BottomSheetNew extends GetView<BottomSheetController> {
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: [
|
||||
//checkin or remove checkin
|
||||
destinationController.isInRog.value == true
|
||||
(destinationController.isInRog.value == true || (destination.buy_point != null && destination.buy_point! > 0))
|
||||
&& (distanceToDest <=
|
||||
destinationController.getForcedChckinDistance(destination) || destination.checkin_radious==-1 )
|
||||
&& destination.cp != 0 && destination.cp != -1 && destination.cp != -2
|
||||
|
||||
Reference in New Issue
Block a user