Initial commit
This commit is contained in:
15
lib/views/notifications/view_notifications.dart
Normal file
15
lib/views/notifications/view_notifications.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
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')));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user