typography

안드로이드/Compose

[Compose] - Design System 구축 - 2. ColorScheme 만들기

[안드로이드] - Compose Typography 만들기1. FontFamilry 정의우선 FontFamily 클래스를 정의합니다.// Type.ktval pretendard = FontFamily( Font(R.font.pretendard_thin, FontWeight.Thin, FontStyle.Normal), Font(R.font.pretendard_extralight, FontWeight.ExtraLight, FontStyle.Normal), Font(R.dongx2.tistory.com 이전 게시글에서 Compose로 Typography를 선언하는 방법에 대해서 알아보았습니다.이번엔 ColorScheme을 선언하는 방법을 정리하였습니다. 1. Color 선언DesignSystem > Color..

안드로이드/Compose

[Compose] - Design System 구축 - 1. Typography 만들기

1. FontFamilry 정의우선 FontFamily 클래스를 정의합니다.// Type.ktval pretendard = FontFamily( Font(R.font.pretendard_thin, FontWeight.Thin, FontStyle.Normal), Font(R.font.pretendard_extralight, FontWeight.ExtraLight, FontStyle.Normal), Font(R.font.pretendard_light, FontWeight.Light, FontStyle.Normal), Font(R.font.pretendard_regular, FontWeight.Normal, FontStyle.Normal), Font(R.font.pretendard_..

dongx._.2
'typography' 태그의 글 목록