set of material

This commit is contained in:
202310715066 NABILA SUWANDIRA 2025-11-07 13:43:39 +07:00
parent 5f4f7ed743
commit c5c2425e62

View File

@ -0,0 +1,19 @@
// /app/src/main/java/com/example/kalkulatorbmi/ui/theme/Type.kt
package com.example.kalkulatorbmi.ui.theme
import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp
// Set of Material typography styles to start with
val Typography = Typography(
bodyLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp
)
)