Skip to content

Commit

Permalink
[FEATURE]#218 : ProfileEdit Destination 딥링크 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Jan 30, 2025
1 parent 78c51e4 commit 616724b
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -82,7 +83,13 @@ interface ProfileEditNavigator {
}

@OptIn(ExperimentalMaterial3Api::class)
@Destination
@Destination(
deepLinks = [
DeepLink(
uriPattern = "wespot://all/profile-edit",
),
],
)
@Composable
fun ProfileEditScreen(
navigator: ProfileEditNavigator,
Expand Down

0 comments on commit 616724b

Please sign in to comment.