pikapika/lib/screens/NetworkSettingsScreen.dart

28 lines
702 B
Dart
Raw Permalink Normal View History

2021-09-29 23:57:09 +00:00
import 'package:flutter/material.dart';
2021-11-11 03:00:38 +00:00
import 'package:pikapika/screens/components/NetworkSetting.dart';
2021-09-29 23:57:09 +00:00
2023-05-08 09:57:28 +00:00
import 'components/ListView.dart';
2022-03-19 04:12:27 +00:00
import 'components/RightClickPop.dart';
2021-09-29 23:57:09 +00:00
class NetworkSettingsScreen extends StatelessWidget {
2022-03-19 04:12:27 +00:00
const NetworkSettingsScreen({Key? key}) : super(key: key);
2021-09-29 23:57:09 +00:00
@override
2022-03-19 04:12:27 +00:00
Widget build(BuildContext context){
2022-03-25 14:57:30 +00:00
return rightClickPop(
child: buildScreen(context),
context: context,
canPop: true,
);
2022-03-19 04:12:27 +00:00
}
Widget buildScreen(BuildContext context) => Scaffold(
appBar: AppBar(title: const Text('网络设置')),
2023-05-08 09:57:28 +00:00
body: PikaListView(
2022-03-19 04:12:27 +00:00
children: const [
2021-09-29 23:57:09 +00:00
NetworkSetting(),
],
),
);
}