전체 글 518

[ FLUTTER ] Flexible ( Expanded ) 차이

Expanded 가 Flexible의 하위 개념이다. Fit 이 확장되는 옵션을 포함한 Flexible을 Expanded로 줄여 사용할 수 있음 Expanded is just a shorthand for Flexible Expanded( child: Foo(), ); Flexible( fit: FlexFit.tight, child: Foo(), ); https://stackoverflow.com/questions/52645944/flutter-expanded-vs-flexible Flutter: Expanded vs Flexible I've used both Expanded and Flexible widgets and they both seem to work the same. What is the dif..

App/Flutter HEON.D 2022.03.16

[ FLUTTER ] 이미지 업로드 용량 문제

https://powellstreet.tistory.com/87 고용량 이미지 업로드 오류 해결 (Nginx 파일 업로드 용량 제한 설정) * 문제 발견 이미지 파일 업로드 기능을 구현하다가 문제를 발견했다. 특정 용량 이상의 이미지들이 업로드가 되지 않는 것이었다. 로컬에서 테스트할 때는 분명히 용량 문제같은건 없었는데, powellstreet.tistory.com node.js 기존 경로 => .ebextensions/proxy.config 바꾼 경로 => .platform/nginx/conf.d/nginx.conf client_max_body_size 300M; 추가

Team/난감했던 이슈들 라넌.B 2022.03.11

[ LINUX ] find 파일 찾기

find [OPTION...] [PATH] [EXPRESSION...] OPTION -P : 심볼릭 링크를 따라가지 않고, 심볼릭 링크 자체 정보 사용. -L : 심볼릭 링크에 연결된 파일 정보 사용. -H : 심볼릭 링크를 따라가지 않으나, Command Line Argument를 처리할 땐 예외. -D : 디버그 메시지 출력. EXPRESSION -name : 지정된 문자열 패턴에 해당하는 파일 검색. -empty : 빈 디렉토리 또는 크기가 0인 파일 검색. -delete : 검색된 파일 또는 디렉토리 삭제. -exec : 검색된 파일에 대해 지정된 명령 실행. -path : 지정된 문자열 패턴에 해당하는 경로에서 검색. -print : 검색 결과를 출력. 검색 항목은 newline으로 구분. (기..

BE/Linux HEON.D 2022.03.10

[ ANGULAR ] polyfills 수정 후에도 IE 안되는 경우

Angular 11 까지만 IE 11 마지막으로 지원됨 12 부터는 지원안됨 .browserslistrc 수정 not prefix 제거 # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. # For additional information regarding the format and rule options, please see: # https://github.com/browserslist/browserslist#queries # For the full list of supported browsers by the Angular framework, please see..

Team/난감했던 이슈들 HEON.D 2022.02.28