[Flutter] Text 노란색 밑줄 없애는 방법 | flutter text yellow underline
해결방법 1. DefaultTextStyle 위젯 사용 기존 코드 child: Text( '왜 노란색 줄이 뜨는가', style: TextStyle( fontSize: 20.0, fontWeight: FontWeight.w700, color: Colors.black, ), ), DefaultTextStyle 사용한 코드 DefaultTextStyle를 사용해 아래와 같이 코드를 작성하면 기존의 노란 줄이 사라진 것을 볼 수 있다. child: DefaultTextStyle( style: TextStyle( fontSize: 20.0, fontWeight: FontWeight.w700, color: Colors.black, ), child: Text('왜 노란색 줄이 뜨는가'), ), 기본골격 Defaul..
2023. 5. 24.