mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 01:35:23 +00:00
13 lines
235 B
Dart
13 lines
235 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class MenuView extends StatelessWidget {
|
|
const MenuView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text('Menu View'),
|
|
);
|
|
}
|
|
}
|