2020-10-04 21:51:38 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
|
|
|
|
class InboxPage extends HookWidget {
|
2021-01-03 19:43:39 +01:00
|
|
|
const InboxPage();
|
|
|
|
|
2020-10-04 21:51:38 +02:00
|
|
|
@override
|
2020-10-06 12:06:29 +02:00
|
|
|
Widget build(BuildContext context) => Scaffold(
|
|
|
|
appBar: AppBar(),
|
|
|
|
body: Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
'🚧 WORK IN PROGRESS 🚧',
|
|
|
|
style: Theme.of(context).textTheme.headline5,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
2020-10-04 21:51:38 +02:00
|
|
|
),
|
2020-10-06 12:06:29 +02:00
|
|
|
);
|
2020-10-04 21:51:38 +02:00
|
|
|
}
|