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