feat(ui): put homepage title back into appbar on top

This commit is contained in:
fbachus
2026-08-09 15:09:12 +02:00
parent 5b073b9e94
commit b5272e5052
5 changed files with 23 additions and 25 deletions
+3 -10
View File
@@ -705,20 +705,13 @@ class _JourneyOverviewPageState extends State<JourneyOverviewPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Your Journeys"),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
padding: EdgeInsets.only(left: 30, top: 50),
width: 500.0,
height: 100.0,
child: FittedBox(
fit: BoxFit.contain,
alignment: Alignment.center,
child: Text("Your Journeys"),
),
),
FutureBuilder(
future: loadJourneys(),
builder: (context, snapshot) {
+1 -1
View File
@@ -1183,4 +1183,4 @@ enum VehicleType {
subway,
regionalTrain,
PLACEHOLDER,
}
}