From 616724b7b4b430a9e5fb7bcf142b672eb60d98d0 Mon Sep 17 00:00:00 2001 From: jeongjaino Date: Fri, 31 Jan 2025 00:13:56 +0900 Subject: [PATCH] =?UTF-8?q?[FEATURE]#218=20:=20ProfileEdit=20Destination?= =?UTF-8?q?=20=EB=94=A5=EB=A7=81=ED=81=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bff/wespot/entire/screen/edit/ProfileEditScreen.kt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/feature/entire/src/main/java/com/bff/wespot/entire/screen/edit/ProfileEditScreen.kt b/feature/entire/src/main/java/com/bff/wespot/entire/screen/edit/ProfileEditScreen.kt index 6186550f..27a22cc0 100644 --- a/feature/entire/src/main/java/com/bff/wespot/entire/screen/edit/ProfileEditScreen.kt +++ b/feature/entire/src/main/java/com/bff/wespot/entire/screen/edit/ProfileEditScreen.kt @@ -72,6 +72,7 @@ import com.bff.wespot.ui.component.WSBottomSheet import com.bff.wespot.ui.model.ToastState import com.bff.wespot.ui.util.clickableSingle import com.bff.wespot.ui.util.handleSideEffect +import com.ramcosta.composedestinations.annotation.DeepLink import com.ramcosta.composedestinations.annotation.Destination import kotlinx.coroutines.launch import org.orbitmvi.orbit.compose.collectAsState @@ -82,7 +83,13 @@ interface ProfileEditNavigator { } @OptIn(ExperimentalMaterial3Api::class) -@Destination +@Destination( + deepLinks = [ + DeepLink( + uriPattern = "wespot://all/profile-edit", + ), + ], +) @Composable fun ProfileEditScreen( navigator: ProfileEditNavigator,