blob: 1f85ae8abcc3a07b4eac6f90c8266a101f4e34f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import 'package:flutter_ics_homescreen/export.dart';
import 'widgets/wifi_content.dart';
class WifiPage extends StatelessWidget {
const WifiPage({super.key});
static Page<void> page() => const MaterialPage<void>(child: WifiPage());
@override
Widget build(BuildContext context) {
//final currentUser =
//ref.watch(usersProvider.select((user) => user.selectedUser));
return const Scaffold(body: WifiContent());
}
}
|