Flutter(2)
-
[flutter-web] 웹 호스팅 firebase web hosting
firebase 에서 프로젝트 추가를 한다. firebase 에 프로젝트명을 입력한다. 잠시 기다리면 프로젝트가 생성됩니다. 호스팅 메뉴를 선택합니다. firebase 호스팅 설정을 합니다. 첫줄부터 실패를 합니다. % npm install -g firebase-tools zsh: command not found: npm brew를 통해 노드를 설치해 준다. //Homebrew설치 %/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" //노드 설치 % brew install node https://butter-ring.tistory.com/17 다시 호스팅설정을 해줍니다. //Fi..
2022.08.27 -
[flutter] text widget 에서 글씨가 짤리는 경우 해결방법 _ max length
이슈 모습 Flutter 에서 TextField의 경우에는 maxLength 라는옵션이 있어서 바로 적용할수 있었는데, TextField의 경우에는 TextField( maxLength: 5 ), Text 위젝의 경우에는 옵션이 없어 아래와 같은 로직을 추가하여서 적용을 할 수 있었다. Text 위젯의 경우에는 아래와 같게 한다. Text( _name.length > 15 ? _name.substring(0, 15)+'...' : _name, ), google font util Widget gFontWithStyle({required String txt, required TextStyle stylel}) { return Text( txt, style: GoogleFonts.roboto( textStyle..
2022.04.08