assets:
- assets/images/practice picture.PNG
- assets/images/일영 마크.PNG
Image.asset('assets/images/practice picture.PNG')
만약 이미지 파일이 너무 많다?assets:
- assets/images/ //이미지가 담겨있는 경로를 작성하면 해당 폴더에 있는 이미지 전부 사용 가능
textAlign: TextAlign.center, textAlign: TextAlign.left ...
fontWeight(굵기)
fontStyle(기울임꼴)
fontSize (크기)
backgroundColor (바탕색)
decoration(밑줄 장식)
decorationColor (장식 색상)
decorationStyle(장식 모양(물결))
ex) maxLines:2 //2줄로 제한
RichText(
text: TextSpan(
children: [
TextSpan(text: 'Hello '),
TextSpan(text: 'bold', style: TextStyle(fontWeight:FontWeight.bold)),
TextSpan(text: ' world!'),
])
)
위 예시에서 Hello는 기본 글꼴, bold는 bold체로 world는 기본 글꼴이다.