Search

copyWith (textStyle)

final textStyle = TextStyle( color: Colors.white, fontSize: 30.0, fontWeight: FontWeight.w300, letterSpacing: 4.0, ); Text( "VIDEO", style: textStyle, ), Text( "PLAYER", style: textStyle.copyWith( fontWeight: FontWeight.w700, ), ),
Dart
복사