UI elements using the new structs #8

Merged
remoll merged 37 commits from feature/unify-api-frontend into main 2024-06-23 19:21:50 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit f6e3cfc8a0 - Show all commits

View File

@ -8,13 +8,13 @@ name: Build and release APK
jobs:
build:
name: Build APK
runs-on: k8s
runs-on: ubuntu-latest
steps:
- name: Install prerequisites
run: |
sudo apt-get update
sudo apt-get install -y xz-utils unzip
apt-get update
apt-get install -y jq
- uses: https://gitea.com/actions/checkout@v4

View File

View File

@ -22,7 +22,7 @@ class _BasePageState extends State<BasePage> {
});
}
Widget currentView = MapPage();
Widget currentView = MainPage();
@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
@ -51,7 +51,7 @@ class _BasePageState extends State<BasePage> {
// Update the state of the app
_onItemTapped(0);
// Then close the drawer
currentView = MapPage();
currentView = MainPage();
Navigator.pop(context);
},
),