밑줄

Flutter/기본

[Flutter] Text에 밑줄, 윗줄, 취소선 추가하기

1. 기본 Text( "텍스트", style: TextStyle( decoration: TextDecoration.none, ), ), 2. 밑줄 Text( "텍스트", style: TextStyle( decoration: TextDecoration.underline, ), ), 3. 윗줄 Text( "텍스트", style: TextStyle( decoration: TextDecoration.overline, ), ), 4. 취소선 Text( "텍스트", style: TextStyle( decoration: TextDecoration.lineThrough, ), ),

Flutter/기본

[Flutter] AppBar UnderLine 밑줄 설정

해당 사진처럼 AppBar에 회색 밑줄을 표시하고 싶을 때는 AppBar의 shape 속성을 사용하면 간단하게 할 수 있다. AppBar( ... ... ... shape: Border( bottom: BorderSide( color: Colors.grey, width: 1, ), ), ),

주톨
'밑줄' 태그의 글 목록