basic setup (layout + icons)

This commit is contained in:
2024-02-10 19:57:17 +01:00
parent 7e798eb606
commit 306d9a006a
100 changed files with 490654 additions and 110 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class MessageListPage extends StatelessWidget {
final String title;
const MessageListPage({super.key, required this.title});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
title,
style: const TextStyle(fontSize: 24),
),
),
);
}
}