Package-level declarations

Properties

Link copied to clipboard

Functions

Link copied to clipboard
fun CustomAppBar(title: String, onNavigateUp: () -> Unit, navigationButtonTitle: String = stringResource(R.string.ui_back_button_title), onRightButton: () -> Unit = {}, rightButtonTitle: String = "")
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun CustomAppBarPreview()
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun CustomAppBarWithActionButtonPreview()
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun CustomAppBarWithRightButtonPreview()
Link copied to clipboard
fun CustomButton(modifier: Modifier = Modifier, onClick: () -> Unit, text: String = "", buttonColor: Color, contentColor: Color, shape: Shape, textStyle: TextStyle? = MaterialTheme.typography.labelSmall, fontWeight: FontWeight)
Link copied to clipboard
fun CustomFloatingActionButton(onClick: () -> Unit, icon: ImageVector, contentDescription: String, modifier: Modifier = Modifier, containerColor: Color = MaterialTheme.colorScheme.surfaceDim, iconTint: Color = MaterialTheme.colorScheme.onSurface, iconSize: Dp = spacing.targetSize * 2)
Link copied to clipboard
@Preview(fontScale = 1.5, showBackground = true)
@Preview(showBackground = true)
fun CustomIconButtonPreview()
Link copied to clipboard
fun CustomTextButton(modifier: Modifier = Modifier, onClick: () -> Unit, text: String, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, fontWeight: FontWeight)
Link copied to clipboard
@Preview(fontScale = 1.5, showBackground = true)
@Preview(showBackground = true)
fun CustomTextButtonPreview()
Link copied to clipboard
fun CustomTextField(value: String, onValueChange: (String) -> Unit, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, shape: Shape = RoundedCornerShape(spacing.extraSmall), isSingleLine: Boolean = true)
Link copied to clipboard
@Preview(showBackground = true)
fun CustomTextFieldPreview()
Link copied to clipboard
fun FlexibleAppBar(title: String = "", leftSide: @Composable () -> Unit = {}, rightSide: @Composable () -> Unit = {})
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun FlexibleAppBarEmptyPreview()
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun FlexibleAppBarPreview()
Link copied to clipboard
fun IconWithTextButton(modifier: Modifier = Modifier, iconModifier: Modifier = Modifier.size(spacing.icon), textModifier: Modifier = Modifier, icon: ImageVector = Icons.Default.ChevronLeft, contentDescription: String? = null, text: String = "", talkbackHint: String = "", textStyle: TextStyle = MaterialTheme.typography.labelSmall, fontWeight: FontWeight = FontWeight.Bold, fontSize: TextUnit = 18.sp, color: Color = MaterialTheme.colorScheme.onPrimary, onClick: () -> Unit)
Link copied to clipboard
fun MarkersAndRoutesListSort(isSortByName: Boolean, isAscending: Boolean, onToggleSortOrder: () -> Unit, onToggleSortByName: () -> Unit)
Link copied to clipboard
fun MarkersAndRoutesTabs(routesTabSelected: Boolean, setRoutesAndMarkersTab: (pickRoutes: Boolean) -> Unit)
Link copied to clipboard
Link copied to clipboard
fun TextFieldWithLabel(value: String, onValueChange: (String) -> Unit, label: String, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, shape: Shape = RoundedCornerShape(spacing.extraSmall), isSingleLine: Boolean = true)
Link copied to clipboard
@Preview(showBackground = true)
fun TextFieldWithLabelPreview()
Link copied to clipboard
fun TextOnlyAppBar(title: String = "", onNavigateUp: () -> Unit = {}, navigationButtonTitle: String = " ", onRightButton: () -> Unit = {}, rightButtonTitle: String = " ")
Link copied to clipboard
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun TextOnlyBarPreview()
@Preview(showBackground = true, fontScale = 2.0)
@Preview(showBackground = true)
fun TextOnlyBarPreviewWithActionButtonPreview()