Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class OfflineStorageOnboardingUiState(val storages: List<StorageUtils.StorageSpace> = emptyList(), val currentPath: String = "", val selectedStorageIndex: Int = -1)
Link copied to clipboard
class OffscreenStorageOnboardingViewModel @Inject constructor(val appContext: Context) : ViewModel

Functions

Link copied to clipboard
fun OfflineStorageOnboardingScreen(onNavigate: () -> Unit?, uiState: OfflineStorageOnboardingUiState, onStorageSelected: (String) -> Unit, modifier: Modifier = Modifier)
Link copied to clipboard
fun OfflineStorageOnboardingScreenVM(onNavigate: () -> Unit?, modifier: Modifier = Modifier, viewModel: OffscreenStorageOnboardingViewModel = hiltViewModel())
Link copied to clipboard
fun StorageDropDownMenu(storages: List<StorageUtils.StorageSpace>, onStorageSelected: (String) -> Unit, selectedStorageIndex: Int, modifier: Modifier = Modifier, backgroundColor: Color)
Link copied to clipboard
fun StorageItem(name: String, freeSpace: String, isSelected: Boolean, foregroundColor: Color, modifier: Modifier)
Link copied to clipboard
@Preview(fontScale = 1.5)
fun StorageItemPreview()