TIL #011 자잘한 기능도 생각보다 수고롭다
TIL #011 191113 수 오늘 배운 점 1. 로딩 위젯 만들기 로고를 넣은 로딩 위젯을 별도의 파일로 만들어서 import하는 방식으로 사용할 예정이다. //Reusable Loading Widgets Container circularProgress() {//중앙에 회전하는 원 return Container( alignment: Alignment.center, padding: EdgeInsets.only(top: 10.0), child: CircularprogressIndicator( valueColor: AlwaysStoppedAnimation(Colors.purple), ), ); } Container linearProgress() {//상단에 수평선 로딩 return Container( pa..
2019. 11. 13. 15:13