Skip to content

Commit

Permalink
update readme for Result sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Oct 27, 2023
1 parent 709428b commit e0b7467
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ internal fun NameEditDialog(navController: NavController) {
NameEdit(
onNameSave = { name ->
navController.setResult(ProfileDestinations.NameEditDialog.Result(name))
navController.navigateUp()
navController.popBackStack()
},
onDismiss = navController::navigateUp,
onDismiss = navController::popBackStack,
)
}

Expand Down
16 changes: 15 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ Another set of functionality is provided to support the result sharing. First, d

```kotlin
import com.kiwi.navigationcompose.typed.Destination
import com.kiwi.navigationcompose.typed.DialogResultEffect
import com.kiwi.navigationcompose.typed.ResultDestination
import com.kiwi.navigationcompose.typed.setResult

sealed interface Destinations : Destination {
@Serializable
Expand All @@ -164,7 +166,7 @@ sealed interface Destinations : Destination {

@Composable
fun Host(navController: NavController) {
ComposableResultEffect(navController) { result: Destinations.Dialog.Result ->
DialogResultEffect(navController) { result: Destinations.Dialog.Result ->
println(result)
// process the result
}
Expand All @@ -175,4 +177,16 @@ fun Host(navController: NavController) {
Text("Open")
}
}

@Composable
fun Dialog(navController: NavController) {
Button(
onClick = {
navController.setResult(Destinations.Dialog.Result(something = 42))
navController.popBackStack()
}
) {
Text("Set and close")
}
}
```

0 comments on commit e0b7467

Please sign in to comment.