31 lines
1010 B
Dart
31 lines
1010 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
import 'package:marianum_mobile/screen/pages/more/roomplan/roomplan.dart';
|
|
import 'package:marianum_mobile/screen/settings/settings.dart';
|
|
import 'package:persistent_bottom_nav_bar/persistent_tab_view.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 Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text("Mehr"),
|
|
actions: [
|
|
IconButton(onPressed: () => PersistentNavBarNavigator.pushNewScreen(context, screen: const Settings(), withNavBar: false), icon: const Icon(Icons.settings))
|
|
],
|
|
),
|
|
body: ListView(
|
|
children: const [
|
|
ListItemNavigator(icon: Icons.newspaper, text: "Marianum Message", target: Message()),
|
|
ListItemNavigator(icon: Icons.room, text: "Raumplan", target: Roomplan()),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|