修正上架時 Google Play 檢查出的 issue
This commit is contained in:
@@ -167,7 +167,11 @@ class _ChannelSalesManagerState extends State<ChannelSalesManager> {
|
||||
String? picked = await _showMonthPicker(context, isStart ? _startYYMM : _endYYMM);
|
||||
if (picked != null) {
|
||||
setState(() {
|
||||
if (isStart) _startYYMM = picked; else _endYYMM = picked;
|
||||
if (isStart) {
|
||||
_startYYMM = picked;
|
||||
} else {
|
||||
_endYYMM = picked;
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user