mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
104 lines
2.9 KiB
Dart
104 lines
2.9 KiB
Dart
import 'package:PiliPlus/utils/storage.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
class FontSizeSelectPage extends StatefulWidget {
|
|
const FontSizeSelectPage({super.key});
|
|
|
|
@override
|
|
State<FontSizeSelectPage> createState() => _FontSizeSelectPageState();
|
|
}
|
|
|
|
class _FontSizeSelectPageState extends State<FontSizeSelectPage> {
|
|
List<double> list = List.generate(16, (index) => 0.85 + index * 0.05);
|
|
late double minSize;
|
|
late double maxSize;
|
|
late double currentSize;
|
|
|
|
Box get setting => GStorage.setting;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
minSize = list.first;
|
|
maxSize = list.last;
|
|
currentSize =
|
|
setting.get(SettingBoxKey.defaultTextScale, defaultValue: 1.0);
|
|
}
|
|
|
|
void setFontSize() {
|
|
setting.put(SettingBoxKey.defaultTextScale, currentSize);
|
|
Get
|
|
..back(result: currentSize)
|
|
..forceAppUpdate();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () {
|
|
currentSize = 1.0;
|
|
setFontSize();
|
|
},
|
|
child: const Text('重置')),
|
|
TextButton(onPressed: setFontSize, child: const Text('确定')),
|
|
const SizedBox(width: 12)
|
|
],
|
|
),
|
|
body: SafeArea(
|
|
child: Column(
|
|
children: [
|
|
Expanded(
|
|
child: Center(
|
|
child: Text(
|
|
'当前字体大小:${currentSize == 1.0 ? '默认' : currentSize}',
|
|
style: TextStyle(fontSize: 14 * currentSize),
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
padding: const EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
border: Border(
|
|
top: BorderSide(
|
|
color:
|
|
theme.colorScheme.primary.withValues(alpha: 0.3))),
|
|
color: theme.colorScheme.surface,
|
|
),
|
|
child: Row(
|
|
children: [
|
|
const Text('小'),
|
|
Expanded(
|
|
child: Slider(
|
|
min: minSize,
|
|
value: currentSize,
|
|
max: maxSize,
|
|
divisions: list.length - 1,
|
|
secondaryTrackValue: 1,
|
|
onChanged: (double val) {
|
|
currentSize = val.toPrecision(2);
|
|
setState(() {});
|
|
},
|
|
),
|
|
),
|
|
const SizedBox(width: 5),
|
|
const Text(
|
|
'大',
|
|
style: TextStyle(fontSize: 20),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|