Package-level declarations
Types
Link copied to clipboard
Specifies the error reason.
Link copied to clipboard
data class ParcelableFont(@FontRes val resId: Int, val weight: FontWeight = FontWeight.Normal, val style: FontStyle = FontStyle.Normal) : Parcelable
Parcelable version of Font that can be used in ParcelableUiTypography. Customizations are limited to the most important Font parameters.
Link copied to clipboard
data class ParcelableTextStyle(val fontFamily: List<ParcelableFont>? = null, val fontWeight: FontWeight? = null, val fontSize: TextUnit? = null, val lineHeight: TextUnit? = null) : Parcelable
Parcelable version of TextStyle that can be used in ParcelableUiTypography. Customizations are limited to the most important TextStyle parameters. Font family is represented as a list of ParcelableFont objects.
Link copied to clipboard
data class ParcelableUiTypography(val onboardingTitle: ParcelableTextStyle, val onboardingText: ParcelableTextStyle, val onboardingButton: ParcelableTextStyle, val helpDialogTitle: ParcelableTextStyle, val helpDialogText: ParcelableTextStyle, val helpDialogButton: ParcelableTextStyle, val errorDialogTitle: ParcelableTextStyle, val errorDialogText: ParcelableTextStyle, val errorDialogButton: ParcelableTextStyle, val scanningInstructions: ParcelableTextStyle, val helpTooltip: ParcelableTextStyle, val loadingScreen: ParcelableTextStyle) : Parcelable
Defines the typography used in the Verify activity UI.