Skip to content

Commit

Permalink
Update method for generating 'navDeepLink'
Browse files Browse the repository at this point in the history
Added an improved method to generate 'navDeepLink' using built-in Kotlin functions. The updated code provides a more efficient approach, but still requires appending the qualified class name to the base path. This change is a step towards optimizing the generation of 'navDeepLink'.
  • Loading branch information
jacobrein committed May 16, 2024
1 parent c374332 commit 3b0a497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Writerside/topics/Shared-Element-Transitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ fun Screens() {
enterTransition = { slideInHorizontally(initialOffsetX = { -it }) },
exitTransition = { slideOutHorizontally(targetOffsetX = { it }) }
) {

FirstScreen()
}
//This could easily be modified to accept the string route
animatedScopeComposable(
Expand Down

0 comments on commit 3b0a497

Please sign in to comment.