This commit is contained in:
lollipopkit🏳️‍⚧️
2024-09-21 23:12:15 +08:00
parent c062c12a0e
commit eab06abcaf
23 changed files with 180 additions and 66 deletions

View File

@@ -23,12 +23,6 @@ class _PingPageState extends State<PingPage>
final _results = ValueNotifier(<PingResult>[]);
bool get isInit => _results.value.isEmpty;
@override
void initState() {
super.initState();
_textEditingController = TextEditingController(text: '');
}
@override
void dispose() {
super.dispose();
@@ -36,6 +30,12 @@ class _PingPageState extends State<PingPage>
_results.dispose();
}
@override
void initState() {
super.initState();
_textEditingController = TextEditingController(text: '');
}
@override
Widget build(BuildContext context) {
super.build(context);