2021-11-24 13:22:22 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import '../Common.dart';
|
|
|
|
import '../Method.dart';
|
|
|
|
|
|
|
|
const _propertyName = "noAnimation";
|
|
|
|
|
|
|
|
late bool _noAnimation;
|
|
|
|
|
|
|
|
Future initNoAnimation() async {
|
|
|
|
_noAnimation = (await method.loadProperty(_propertyName, "false")) == "true";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool noAnimation() {
|
|
|
|
return _noAnimation;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _chooseNoAnimation(BuildContext context) async {
|
|
|
|
String? result =
|
2021-12-02 02:32:35 +00:00
|
|
|
await chooseListDialog<String>(context, "取消键盘或音量翻页动画", ["是", "否"]);
|
2021-11-24 13:22:22 +00:00
|
|
|
if (result != null) {
|
|
|
|
var target = result == "是";
|
|
|
|
await method.saveProperty(_propertyName, "$target");
|
|
|
|
_noAnimation = target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget noAnimationSetting() {
|
|
|
|
return StatefulBuilder(
|
|
|
|
builder: (BuildContext context, void Function(void Function()) setState) {
|
|
|
|
return ListTile(
|
2022-03-19 04:12:27 +00:00
|
|
|
title: const Text("取消键盘或音量翻页动画"),
|
2021-11-24 13:22:22 +00:00
|
|
|
subtitle: Text(_noAnimation ? "是" : "否"),
|
|
|
|
onTap: () async {
|
|
|
|
await _chooseNoAnimation(context);
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|