import 'package:flutter/material.dart'; class InboxView extends StatefulWidget { const InboxView({super.key}); @override State createState() => _InboxViewState(); } class _InboxViewState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Inbox'), ), floatingActionButton: FloatingActionButton( onPressed: () { }, child: Icon(Icons.add), ), ); } }