[Flutter] RichText
RichText( text: TextSpan( text: '개인정보를 제공 받는 자: ', style: TextStyle( color: Color(0XFF666666), fontSize: 12, fontWeight: FontWeight.normal, height: 1.2, ), children: [ TextSpan( text: '(주)조이월드\n', style: TextStyle( color: Colors.black, fontSize: 12, fontWeight: FontWeight.w500, ), ), TextSpan( text: '개인정보 이용 목적: ', ), TextSpan( text: '보너스 이벤트 참여 확인 및 중복\n경품 제공 방지, 이벤트 추천 및 고객 문의 응대', style: Text..
[Flutter] Row/Text OverFlow 인 경우 다음 라인으로 넘기기
text overflow in new line in flutter Row( children: [ SvgPicture.asset( 'assets/icons/info_grey.svg', width: ScreenUtil().setWidth(18), ), SizedBox(width: ScreenUtil().setWidth(4)), Text( 'Flutter는 하나의 코드베이스로 모바일, 웹, 데스크톱에서 네이티브로 컴파일 되는 구글의 아름다운 UI 툴킷입니다.', style: TextStyle( color: Color(0XFF666666), fontSize: ScreenUtil().setSp(11), fontWeight: FontWeight.w400, height: 16/11 ) ) ], ), 오버 플로우! R..