Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Onboarding Package Structure Fix #84

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.ramcosta.composedestinations.spec.DestinationSpec
import com.ramcosta.composedestinations.spec.NavGraphSpec
import nl.q42.template.home.destinations.HomeScreenDestination
import nl.q42.template.home.destinations.HomeSecondScreenDestination
import nl.q42.template.onboarding.ui.start.destinations.OnboardingStartScreenDestination
import nl.q42.template.onboarding.start.ui.destinations.OnboardingStartScreenDestination

/**
*
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nl.q42.template.onboarding.presentation.start
package nl.q42.template.onboarding.start.presentation

import androidx.lifecycle.SavedStateHandle
import androidx.lifecycle.ViewModel
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package nl.q42.template.onboarding.start.presentation

class OnboardingStartViewState(val title: String)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nl.q42.template.onboarding.ui.start
package nl.q42.template.onboarding.start.ui

import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
Expand All @@ -15,7 +15,7 @@ import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.ramcosta.composedestinations.annotation.Destination
import com.ramcosta.composedestinations.navigation.DestinationsNavigator
import nl.q42.template.navigation.viewmodel.InitNavigator
import nl.q42.template.onboarding.presentation.start.OnboardingStartViewModel
import nl.q42.template.onboarding.start.presentation.OnboardingStartViewModel

@Destination
@Composable
Expand Down
Loading