Files
hum-flutter/lib/views/notifications/view_notifications.dart
2025-12-12 14:31:36 -05:00

16 lines
412 B
Dart

import 'package:flutter/cupertino.dart';
class ViewNotifications extends StatefulWidget {
const ViewNotifications({super.key});
@override
State<ViewNotifications> createState() => _ViewNotificationsState();
}
class _ViewNotificationsState extends State<ViewNotifications> {
@override
Widget build(BuildContext context) {
return const SafeArea(child: Center(child: Text('NOTIFICATIONS')));
}
}