Skip to content

Commit

Permalink
✨ :: DotoriTheme 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Cjsghkd committed Sep 18, 2023
1 parent 40f6926 commit 978a1cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/java/com/msg/dotori/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.navigation.compose.rememberNavController
import com.dotori.dotori_components.theme.DotoriTheme
import com.msg.presentation.view.login.navigation.loginRoute
import dagger.hilt.android.AndroidEntryPoint

Expand All @@ -12,7 +13,9 @@ class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
DotoriNavHost(navController = rememberNavController(), startDestination = loginRoute)
DotoriTheme {
DotoriNavHost(navController = rememberNavController(), startDestination = loginRoute)
}
}
}
}

0 comments on commit 978a1cd

Please sign in to comment.