Skip to content

Commit

Permalink
refactor: move navigation package to correct location in java/com/git…
Browse files Browse the repository at this point in the history
…hub/lookupgroup27/lookup/ui
  • Loading branch information
Kenzoud committed Oct 6, 2024
1 parent 45f6dec commit fa014c0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.android.lookup.ui.navigation
package com.github.lookupgroup27.lookup.ui.navigation

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.DateRange
import androidx.compose.material.icons.outlined.Place
import androidx.compose.material.icons.outlined.PlayArrow
import androidx.compose.material.icons.outlined.Star
import androidx.compose.ui.graphics.vector.ImageVector
//import androidx.navigation.NavGraph.Companion.findStartDestination
//import androidx.navigation.NavHostController
import androidx.navigation.NavGraph.Companion.findStartDestination
import androidx.navigation.NavHostController

object Route {
const val MAP = "Map"
Expand Down Expand Up @@ -41,7 +41,7 @@ val LIST_TOP_LEVEL_DESTINATION = listOf(
TopLevelDestinations.QUIZ
)

/*open class NavigationActions(
open class NavigationActions(
private val navController: NavHostController,
) {
/**
Expand Down Expand Up @@ -88,4 +88,4 @@ val LIST_TOP_LEVEL_DESTINATION = listOf(
open fun currentRoute(): String {
return navController.currentDestination?.route ?: ""
}
}*/
}

0 comments on commit fa014c0

Please sign in to comment.