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))
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
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
@Preview(fontScale = 1.5, showBackground = true)
@Preview(showBackground = true)
fun CustomIconButtonPreview()
Link copied to clipboard
fun CustomTextField(value: String, onValueChange: (String) -> Unit, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, shape: Shape = RoundedCornerShape(5.dp), focusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, unfocusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, focusedTextColor: Color = MaterialTheme.colorScheme.onSecondary, unfocusedTextColor: Color = MaterialTheme.colorScheme.onSurfaceVariant, isSingleLine: Boolean = true)
Link copied to clipboard
@Preview(showBackground = true)
fun CustomTextFieldPreview()
Link copied to clipboard
fun IconWithTextButton(modifier: Modifier = Modifier, iconModifier: Modifier = Modifier, onClick: () -> Unit, icon: ImageVector = Icons.Default.ChevronLeft, contentDescription: String? = null, iconText: String = "", textColor: Color = MaterialTheme.colorScheme.onPrimary, iconTint: Color = MaterialTheme.colorScheme.onPrimary, textStyle: TextStyle = MaterialTheme.typography.labelLarge, fontWeight: FontWeight = FontWeight.Normal, fontSize: TextUnit = 18.sp)
Link copied to clipboard
fun MarkersAndRoutesAppBar(onNavigateUp: () -> Unit)
Link copied to clipboard
@Preview(showBackground = true)
fun MarkersAndRoutesAppBarPreview()
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(5.dp), focusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, unfocusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, focusedTextColor: Color = MaterialTheme.colorScheme.onSecondary, unfocusedTextColor: Color = MaterialTheme.colorScheme.onSurfaceVariant, isSingleLine: Boolean = true)
Link copied to clipboard
@Preview(showBackground = true)
fun TextFieldWithLabelPreview()