Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-22 21:13:16 +08:00
parent 55bed2e830
commit e770e39c8f
59 changed files with 1388 additions and 1265 deletions

View File

@@ -389,11 +389,10 @@ class _PayCoinsPageState extends State<PayCoinsPage>
children: [
GestureDetector(
onTap: () {
_coinWithLike.value = !_coinWithLike.value;
GStorage.setting.put(
SettingBoxKey.coinWithLike,
_coinWithLike.value,
);
final newVal = !_coinWithLike.value;
_coinWithLike.value = newVal;
GStorage.setting
.put(SettingBoxKey.coinWithLike, newVal);
},
child: Row(
mainAxisSize: MainAxisSize.min,