42 lines
1.1 KiB
Dart
42 lines
1.1 KiB
Dart
/// 自动全屏
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../Common.dart';
|
|
import '../Method.dart';
|
|
|
|
const _propertyName = "exportRename";
|
|
late bool _exportRename;
|
|
|
|
Future<void> initExportRename() async {
|
|
_exportRename = (await method.loadProperty(_propertyName, "false")) == "true";
|
|
}
|
|
|
|
bool currentExportRename() {
|
|
return _exportRename;
|
|
}
|
|
|
|
Future<void> _chooseExportRename(BuildContext context) async {
|
|
String? result =
|
|
await chooseListDialog<String>(context, "导出时进行重命名", ["是", "否"]);
|
|
if (result != null) {
|
|
var target = result == "是";
|
|
await method.saveProperty(_propertyName, "$target");
|
|
_exportRename = target;
|
|
}
|
|
}
|
|
|
|
Widget exportRenameSetting() {
|
|
return StatefulBuilder(
|
|
builder: (BuildContext context, void Function(void Function()) setState) {
|
|
return ListTile(
|
|
title: const Text("导出时进行重命名"),
|
|
subtitle: Text(_exportRename ? "是" : "否"),
|
|
onTap: () async {
|
|
await _chooseExportRename(context);
|
|
setState(() {});
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|