본문 바로가기

Flutter

[j Flutter] Text 밑줄 긋기 underline

728x90
반응형

글자 밑에 밑줄 긋는 방법 (underline)

 

1. text내에 style로 간단하게 지정하는 방법

 

Text('텍스트에 밑줄',style: TextStyle(decoration: TextDecoration.underline))

 

 

2. 띄어쓰기가 있을 경우 밑줄이 위로 올라는 경우가 있음 이럴땐 container내에 boxDecoration사용

Container(
      decoration:  BoxDecoration(
        border: Border(
        bottom: BorderSide(color: Colors.black,width: 0.5))
      ),
 child: Text('회원탈퇴를 원하시나요?'))
728x90
반응형