Add navigation and individual page components to MainScreen with scaffold setup

This commit is contained in:
2025-11-06 11:17:57 +01:00
parent da87e6cb22
commit 9e59bd9e85
5 changed files with 82 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
package de.jadehs.strassenschadenpro2.pages
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
@Composable
fun CreatePage(modifier: Modifier = Modifier) {
Text("Erstellen")
}