Initial commit
This commit is contained in:
20
lib/screen/pages/more/overhang.dart
Normal file
20
lib/screen/pages/more/overhang.dart
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:marianum_mobile/screen/pages/more/roomplan/roomplan.dart';
|
||||
|
||||
import '../../../widget/ListItem.dart';
|
||||
import 'message/message.dart';
|
||||
|
||||
class Overhang extends StatelessWidget {
|
||||
const Overhang({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return ListView(
|
||||
children: const [
|
||||
ListItemNavigator(icon: Icons.newspaper, text: "Marianum Message", target: Message()),
|
||||
ListItemNavigator(icon: Icons.room, text: "Raumplan", target: Roomplan()),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user