일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- kotlin
- texttheme
- textstyle
- set
- import
- 파이썬
- package
- 코틀린
- DART
- 플러터
- 클래스
- animation
- text
- Android
- variable
- 크롤러
- 웹크롤러
- pushnamed
- 콜렉션
- ML
- python
- 함수
- Flutter
- Collection
- Class
- crawler
- 다트
- map
- List
- function
- Today
- Total
목록textstyle (2)
조용한 담장
Flutter app 에 custom font 를 사용해 보자. Google Fonts 에서 Tomorrow 폰트를 적용해 본다. pubspec.yaml pubspec.yaml 파일에 font 파일 (ttf) 을 추가한다. fonts: - family: Tomorrow fonts: - asset: fonts/Tomorrow-Regular.ttf - asset: fonts/Tomorrow-Bold.ttf weight: 700 - asset: fonts/Tomorrow-Italic.ttf style: italic 3개의 파일을 추가했는데 font family 이름은 'Tomorrow' 이다. bold 는 weight 속성값이 있다. weight 값은 100에서 900까지 100 단위로 값이 있고 FontSt..
Flutter : Text Widgets Flutter 의 텍스트와 관련된 위젯들을 살펴보고 테스트 해보자. 텍스트를 그리는 Text 와 RichText 가 있고, 그래픽적 효과를 적용할 수 있는 TextStyle, 글자, 문장을 모아 문단을 구성할 수 있게 해주는 TextSpan 이 있다. TextStyle class TextStyle({bool inherit: true, Color color, Color backgroundColor, double fontSize, FontWeight fontWeight, FontStyle fontStyle, ... }) An immutable style in which paint text 화면에 그려지는 텍스트에 다양한 효과를 적용하기 위한 속성들을 지정하는 데에 사..