Added basic Marianum Message and Roomplan in more section

This commit is contained in:
2023-05-06 11:32:21 +02:00
parent 254164a26c
commit 9b5a4f7029
4 changed files with 28 additions and 2 deletions

View File

@ -1,4 +1,5 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class Message extends StatefulWidget {
const Message({Key? key}) : super(key: key);
@ -10,6 +11,17 @@ class Message extends StatefulWidget {
class _MessageState extends State<Message> {
@override
Widget build(BuildContext context) {
return const Text("Message");
return Scaffold(
appBar: AppBar(
title: const Text("Marianum Message"),
),
body: ListView.builder(itemBuilder: (context, index) {
return ListTile(
leading: const Icon(Icons.newspaper),
title: Text(index.toString()),
trailing: const Icon(Icons.arrow_right),
);
}),
);
}
}