Developer’s Blog
/
Framework
/
Flutter
/
TextStyle
Search
TextStyle
final
=
TextStyle
(
color
:
Colors
.
white
,
fontSize
:
30.0
,
fontWeight
:
FontWeight
.
w300
,
letterSpacing
:
4.0
,
)
;
Text
(
"Hello World"
,
style
:
TextStyle
(
color
:
Colors
.
white
,
)
,
)
,
Dart
복사