lemmur-app-android/lib/pages/inbox.dart

23 lines
561 B
Dart
Raw Normal View History

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
}