Flutter62 Flutter - Toast, SnackBar Flutter Toast 생성 https://pub.dev/packages/fluttertoast 1. 라이브러리 추가 fluttertoast: ^8.0.8 2. 코드 추가 Build Context 없는 상태 Fluttertoast.showToast( msg: "This is Center Short Toast", toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.CENTER, timeInSecForIosWeb: 1, backgroundColor: Colors.red, textColor: Colors.white, fontSize: 16.0 ); Build Context 있는 상태 FToast fToast; @override void initState() { .. 2021. 11. 8. Mac Path 경로 설정 * 터미널 설정에 따라서 bash_profile or zshrc 에 경로 설정을 해야한다. 필자와 같이 터미널이 zsh 로 기본 으로 되어 있다면 bash_profile 을 할 경우에는 매번 source ~/.bash_profile 처리를 해야하기 때문에 zshrc 로 처리하는게 편할 것이다. bash_profile 과 zshrc 의 차이 설명 링크 1. open (1) bash_profile 열기 (새 창으로 뜬다) open -e ~/.bash_profile or open -e ~/.zshrc (2) bash_profile 에서 경로 추가 export PATH=$PATH:{플러터 폴더 경로}/bin 필자의 경우 export PATH=$PATH:/Users/hoon/flutter/bin (3) 변경된 b.. 2021. 11. 3. 이전 1 ··· 8 9 10 11 다음