Package-level declarations

Types

Link copied to clipboard
data class Folder(val name: String, val icon: ImageVector, val filter: String)
Link copied to clipboard
class PlacesNearbySharedLogic(soundscapeServiceConnection: SoundscapeServiceConnection, viewModelScope: CoroutineScope)
Link copied to clipboard
data class PlacesNearbyUiState(var userLocation: LngLatAlt? = null, var level: Int = 0, var nearbyPlaces: FeatureCollection = FeatureCollection(), var nearbyIntersections: FeatureCollection = FeatureCollection(), var filter: String = "", var title: String = "", var markerDescription: LocationDescription? = null)
Link copied to clipboard
class PlacesNearbyViewModel @Inject constructor(soundscapeServiceConnection: SoundscapeServiceConnection) : ViewModel

Functions

Link copied to clipboard
@Preview(showBackground = true)
fun MarkersScreenPreview()
Link copied to clipboard
fun PlacesNearbyList(uiState: PlacesNearbyUiState, navController: NavController, onClickFolder: (String, String) -> Unit, modifier: Modifier)
Link copied to clipboard
@Preview(showBackground = true)
fun PlacesNearbyPreview()
Link copied to clipboard
fun PlacesNearbyScreen(homeNavController: NavController, uiState: PlacesNearbyUiState, modifier: Modifier = Modifier, onClickFolder: (String, String) -> Unit = {_,_ ->}, onClickBack: () -> Unit = {})
Link copied to clipboard
fun PlacesNearbyScreenVM(homeNavController: NavController, modifier: Modifier = Modifier, viewModel: PlacesNearbyViewModel = hiltViewModel())