AiutaProductBarThemeTypography
interface AiutaProductBarThemeTypography
Typography configuration for product bar text elements.
This interface defines text styles used for product information in the product bar throughout the SDK. It provides consistent text styling that can be customized to match your app's design system.
theme {
productBar {
typography = object : AiutaProductBarThemeTypography {
override val product = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 12.sp,
lineHeight = 18.sp
)
override val brand = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 10.sp,
lineHeight = 16.sp,
letterSpacing = 0.04.sp
)
}
}
}
Content copied to clipboard
Inheritors
Types
Link copied to clipboard
Default implementation of AiutaProductBarThemeTypography.