Skip to content

Commit

Permalink
Update constants
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelMesicek committed May 9, 2024
1 parent 4e35222 commit 82e1a06
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ class NavRouterImpl(private val navController: NavController) : NavRouter {
navController.navigate(this)
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,4 @@ interface Constants {
const val BASE_PROD_URL = "https://reqres.in/"
const val TIMEOUT_IN_SECONDS = 30L
}

object Ui {
const val SCREEN_ANIMATION_DURATION = 200
const val SCREEN_FADE_DURATION = 100
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import javax.inject.Inject
@Composable
fun TEMPLATEScreen(
navigation: NavRouter,
viewModel: TEMPLATEViewModel = hiltViewModel(), // createModalViewModel(),
viewModel: TEMPLATEViewModel = hiltViewModel(),
) {
with(viewModel) {
EventsEffect {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import app.futured.androidprojecttemplate.ui.theme.Grid
@Composable
fun InfoScreen(
navigation: NavRouter,
viewModel: InfoViewModel = hiltViewModel(), // createModalViewModel(),
viewModel: InfoViewModel = hiltViewModel(),
) {
with(viewModel) {
EventsEffect {
Expand Down

0 comments on commit 82e1a06

Please sign in to comment.