-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] #16 : 공용 DesignSystem Type 구현
- Loading branch information
1 parent
dc4d7f9
commit 345c392
Showing
1 changed file
with
136 additions
and
0 deletions.
There are no files selected for viewing
136 changes: 136 additions & 0 deletions
136
core/designsystem/src/main/java/com/wap/designsystem/Type.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
package com.wap.designsystem | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.Stable | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.setValue | ||
import androidx.compose.ui.text.TextStyle | ||
import androidx.compose.ui.text.font.Font | ||
import androidx.compose.ui.text.font.FontFamily | ||
import androidx.compose.ui.text.font.FontStyle | ||
import androidx.compose.ui.text.font.FontWeight | ||
import androidx.compose.ui.unit.sp | ||
import com.wap.wapp.core.designsystem.R | ||
|
||
val NotoSansRegular: FontFamily = | ||
FontFamily( | ||
Font( | ||
resId = R.font.notosanskr_regular, | ||
weight = FontWeight.Normal, | ||
style = FontStyle.Normal, | ||
), | ||
) | ||
|
||
val NotoSansMedium: FontFamily = | ||
FontFamily( | ||
Font( | ||
resId = R.font.notosanskr_medium, | ||
weight = FontWeight.Medium, | ||
style = FontStyle.Normal, | ||
), | ||
) | ||
|
||
val NotoSansBold: FontFamily = | ||
FontFamily( | ||
Font( | ||
resId = R.font.notosanskr_bold, | ||
weight = FontWeight.Bold, | ||
style = FontStyle.Normal, | ||
), | ||
) | ||
|
||
@Stable | ||
class WappTypography internal constructor( | ||
titleBold: TextStyle, | ||
titleMedium: TextStyle, | ||
titleRegular: TextStyle, | ||
contentBold: TextStyle, | ||
contentMedium: TextStyle, | ||
contentRegular: TextStyle, | ||
labelBold: TextStyle, | ||
labelMedium: TextStyle, | ||
labelRegular: TextStyle, | ||
captionBold: TextStyle, | ||
captionMedium: TextStyle, | ||
captionRegular: TextStyle, | ||
) { | ||
var titleBold: TextStyle by mutableStateOf(titleBold) | ||
private set | ||
var titleMedium: TextStyle by mutableStateOf(titleMedium) | ||
private set | ||
var titleRegular: TextStyle by mutableStateOf(titleRegular) | ||
private set | ||
var contentBold: TextStyle by mutableStateOf(contentBold) | ||
private set | ||
var contentMedium: TextStyle by mutableStateOf(contentMedium) | ||
private set | ||
var contentRegular: TextStyle by mutableStateOf(contentRegular) | ||
private set | ||
var labelBold: TextStyle by mutableStateOf(labelBold) | ||
private set | ||
var labelMedium: TextStyle by mutableStateOf(labelMedium) | ||
private set | ||
var labelRegular: TextStyle by mutableStateOf(labelRegular) | ||
private set | ||
var captionBold: TextStyle by mutableStateOf(captionBold) | ||
private set | ||
var captionMedium: TextStyle by mutableStateOf(captionMedium) | ||
private set | ||
var captionRegular: TextStyle by mutableStateOf(captionRegular) | ||
private set | ||
} | ||
|
||
@Composable | ||
fun WappTypography(): WappTypography { | ||
return WappTypography( | ||
titleBold = TextStyle( | ||
fontSize = 22.sp, | ||
fontFamily = NotoSansBold, | ||
), | ||
titleMedium = TextStyle( | ||
fontSize = 22.sp, | ||
fontFamily = NotoSansMedium, | ||
), | ||
titleRegular = TextStyle( | ||
fontSize = 22.sp, | ||
fontFamily = NotoSansRegular, | ||
), | ||
contentBold = TextStyle( | ||
fontSize = 16.sp, | ||
fontFamily = NotoSansBold, | ||
), | ||
contentMedium = TextStyle( | ||
fontSize = 16.sp, | ||
fontFamily = NotoSansMedium, | ||
), | ||
contentRegular = TextStyle( | ||
fontSize = 16.sp, | ||
fontFamily = NotoSansRegular, | ||
), | ||
labelBold = TextStyle( | ||
fontSize = 14.sp, | ||
fontFamily = NotoSansBold, | ||
), | ||
labelMedium = TextStyle( | ||
fontSize = 14.sp, | ||
fontFamily = NotoSansMedium, | ||
), | ||
labelRegular = TextStyle( | ||
fontSize = 14.sp, | ||
fontFamily = NotoSansRegular, | ||
), | ||
captionBold = TextStyle( | ||
fontSize = 12.sp, | ||
fontFamily = NotoSansBold, | ||
), | ||
captionMedium = TextStyle( | ||
fontSize = 12.sp, | ||
fontFamily = NotoSansMedium, | ||
), | ||
captionRegular = TextStyle( | ||
fontSize = 12.sp, | ||
fontFamily = NotoSansRegular, | ||
), | ||
) | ||
} |