adguard-home-manager/lib/screens/settings/dhcp/select_interface_modal.dart

223 lines
9.1 KiB
Dart
Raw Normal View History

2023-03-16 23:29:18 +01:00
import 'dart:io';
2022-10-12 03:58:17 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:adguard_home_manager/models/dhcp.dart';
class SelectInterfaceModal extends StatelessWidget {
final List<NetworkInterface> interfaces;
final void Function(NetworkInterface) onSelect;
2023-05-01 02:50:42 +02:00
final bool dialog;
2022-10-12 03:58:17 +02:00
const SelectInterfaceModal({
Key? key,
required this.interfaces,
required this.onSelect,
2023-05-01 02:50:42 +02:00
required this.dialog
2022-10-12 03:58:17 +02:00
}) : super(key: key);
@override
Widget build(BuildContext context) {
2023-05-01 02:50:42 +02:00
Widget content() {
return Column(
mainAxisSize: MainAxisSize.min,
2022-10-12 03:58:17 +02:00
children: [
2023-05-01 04:49:40 +02:00
Flexible(
child: SingleChildScrollView(
child: Wrap(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Column(
children: [
Padding(
padding: const EdgeInsets.only(top: 24),
child: Icon(
Icons.settings_ethernet_rounded,
size: 24,
color: Theme.of(context).listTileTheme.iconColor
),
2023-05-01 02:50:42 +02:00
),
2023-05-01 04:49:40 +02:00
const SizedBox(height: 16),
Text(
AppLocalizations.of(context)!.selectInterface,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
color: Theme.of(context).colorScheme.onSurface
2022-10-12 03:58:17 +02:00
),
),
2023-05-01 04:49:40 +02:00
],
),
],
),
const SizedBox(height: 16),
ListView.builder(
primary: false,
shrinkWrap: true,
itemCount: interfaces.length,
itemBuilder: (context, index) => Material(
color: Colors.transparent,
child: InkWell(
onTap: () {
Navigator.pop(context);
onSelect(interfaces[index]);
},
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 12),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
interfaces[index].name,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w400,
color: Theme.of(context).colorScheme.onSurface
),
),
Row(
children: [
2022-11-05 01:09:09 +01:00
Text(
2023-05-01 04:49:40 +02:00
"${AppLocalizations.of(context)!.hardwareAddress}: ",
style: TextStyle(
2022-11-05 01:09:09 +01:00
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
Text(
2023-05-01 04:49:40 +02:00
interfaces[index].hardwareAddress,
2022-11-05 01:09:09 +01:00
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
],
2022-10-12 03:58:17 +02:00
),
const SizedBox(height: 5),
2023-05-01 04:49:40 +02:00
if (interfaces[index].flags.isNotEmpty) ...[
Row(
children: [
Text(
"Flags: ",
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
2022-11-05 01:09:09 +01:00
),
2023-05-01 04:49:40 +02:00
Text(
interfaces[index].flags.join(', '),
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
2023-05-01 04:49:40 +02:00
],
),
const SizedBox(height: 5),
],
if (interfaces[index].gatewayIp != '') ...[
Row(
children: [
Text(
"${AppLocalizations.of(context)!.gatewayIp}: ",
2023-03-16 23:29:18 +01:00
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
2023-05-01 04:49:40 +02:00
Text(
interfaces[index].gatewayIp,
2023-03-16 23:29:18 +01:00
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
2023-05-01 04:49:40 +02:00
],
),
const SizedBox(height: 5),
],
if (interfaces[index].ipv4Addresses.isNotEmpty) ...[
Row(
children: [
Flexible(
child: Text(
"${AppLocalizations.of(context)!.ipv4addresses}: ${interfaces[index].ipv4Addresses.join(', ')}",
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
)
],
),
const SizedBox(height: 5),
],
if (interfaces[index].ipv6Addresses.isNotEmpty) ...[
Row(
children: [
Flexible(
child: Text(
"${AppLocalizations.of(context)!.ipv6addresses}: ${interfaces[index].ipv6Addresses.join(', ')}",
style: TextStyle(
fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
)
],
),
]
],
),
),
),
2023-05-01 04:49:40 +02:00
)
),
],
),
2022-10-12 03:58:17 +02:00
),
),
Padding(
padding: const EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
TextButton(
onPressed: () => Navigator.pop(context),
child: Text(AppLocalizations.of(context)!.cancel)
)
],
),
2023-03-16 23:29:18 +01:00
),
if (Platform.isIOS) const SizedBox(height: 16)
2022-10-12 03:58:17 +02:00
],
2023-05-01 02:50:42 +02:00
);
}
if (dialog == true) {
return Dialog(
child: ConstrainedBox(
constraints: const BoxConstraints(
maxWidth: 500
),
child: content()
),
);
}
else {
return Container(
decoration: BoxDecoration(
color: Theme.of(context).dialogBackgroundColor,
borderRadius: const BorderRadius.only(
topLeft: Radius.circular(28),
topRight: Radius.circular(28)
)
),
child: content()
);
}
2022-10-12 03:58:17 +02:00
}
}