This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Replaced TopAppBar with CenterAlignedTopAppBar, Fix issue #857 App title moves * Separate navigation route and args Issue#863 * moved navArguments to Screen class constructor * Moved Screen class to compose package
- Loading branch information
1 parent
35d0b39
commit 5fb12f0
Showing
2 changed files
with
63 additions
and
14 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
app/src/main/java/com/google/samples/apps/sunflower/compose/Screen.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.samples.apps.sunflower.compose | ||
|
||
import androidx.navigation.NamedNavArgument | ||
import androidx.navigation.NavType | ||
import androidx.navigation.navArgument | ||
|
||
sealed class Screen( | ||
val route: String, | ||
val navArguments: List<NamedNavArgument> = emptyList() | ||
) { | ||
data object Home : Screen("home") | ||
|
||
data object PlantDetail : Screen( | ||
route = "plantDetail/{plantId}", | ||
navArguments = listOf(navArgument("plantId") { | ||
type = NavType.StringType | ||
}) | ||
) { | ||
fun createRoute(plantId: String) = "plantDetail/${plantId}" | ||
} | ||
|
||
data object Gallery : Screen( | ||
route = "gallery/{plantName}", | ||
navArguments = listOf(navArgument("plantName") { | ||
type = NavType.StringType | ||
}) | ||
) { | ||
fun createRoute(plantName: String) = "gallery/${plantName}" | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters