Files
proxypin/lib/ui/mobile/widgets/highlight.dart
2025-06-18 01:51:16 +08:00

100 lines
3.5 KiB
Dart

/*
* Copyright 2023 Hongen Wang All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter/material.dart';
import 'package:proxypin/l10n/app_localizations.dart';
import 'package:proxypin/ui/component/state_component.dart';
import 'package:proxypin/ui/component/widgets.dart';
import 'package:proxypin/utils/keyword_highlight.dart';
class KeywordHighlight extends StatefulWidget {
const KeywordHighlight({super.key});
@override
State<KeywordHighlight> createState() => _KeywordHighlightState();
}
class _KeywordHighlightState extends State<KeywordHighlight> {
AppLocalizations get localizations => AppLocalizations.of(context)!;
@override
Widget build(BuildContext context) {
var colors = {
Colors.red: localizations.red,
Colors.yellow.shade600: localizations.yellow,
Colors.blue: localizations.blue,
Colors.green: localizations.green,
Colors.grey: localizations.gray,
};
return Scaffold(
appBar: AppBar(
title: Text(localizations.keyword + localizations.highlight,
style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w500)),
actions: [
SwitchWidget(
scale: 0.7, value: KeywordHighlights.enabled, onChanged: (val) => KeywordHighlights.enabled = val),
const SizedBox(width: 10)
],
),
body: DefaultTabController(
length: colors.length,
child: Scaffold(
appBar: TabBar(tabs: colors.entries.map((e) => Tab(text: e.value)).toList()),
body: TabBarView(
children: colors.entries
.map((e) => KeepAliveWrapper(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 15),
child: TextFormField(
minLines: 2,
maxLines: 2,
initialValue: KeywordHighlights.keywords[e.key],
onChanged: (value) {
if (value.isEmpty) {
KeywordHighlights.keywords.remove(e.key);
} else {
KeywordHighlights.keywords[e.key] = value;
}
},
decoration: decoration(localizations.keyword),
))))
.toList()),
),
),
);
}
InputDecoration decoration(String label, {String? hintText}) {
return InputDecoration(
floatingLabelBehavior: FloatingLabelBehavior.always,
labelText: label,
isDense: true,
border: const OutlineInputBorder(),
);
}
@override
void dispose() {
if (KeywordHighlights.enabled) {
KeywordHighlights.saveKeywords(Map.from(KeywordHighlights.keywords));
} else {
KeywordHighlights.saveKeywords(KeywordHighlights.keywords);
}
super.dispose();
}
}