blob: fe53953e18f35b488efcbb5126252169a9189b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import 'package:flutter_ics_homescreen/export.dart';
import 'widgets/bluetooth_content.dart';
class BluetoothPage extends ConsumerWidget {
const BluetoothPage({super.key});
static Page<void> page() => const MaterialPage<void>(child: BluetoothPage());
@override
Widget build(BuildContext context, WidgetRef ref) {
return const Scaffold(body: BluetoothContent());
}
}
|