본문 바로가기
Programming/Flutter

라이트/다크 테마 적용시 기존 테마값은 그대로 사용하고, 특정 속성만 변경

by web data 2024. 10. 6.

 

* copyWith 

Text(
  "헤드라인3이 적용된 텍스트입니다.",
  style: Theme.of(context)
      .textTheme
      .headline3!
      .copyWith(color: Theme.of(context).colorScheme.primary),
)