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