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