개발일지19 tailwindcss 적용하기 공식 홈피 설명대로 하면 되긴하지만, 에러문구가 뜨는게 싫어서 옛날 방식을 정리해 둠. $ npx create-react-app project_name --template typescript $ cd project_name $ npm i -D tailwindcss $ npm i -D postcss autoprefixer // 3모듈을 한번에 설치하려고 하면 에러 뿜음 $ npx tailwindcss init //--- package.json script 수정 "tailwind:build": "tailwind build -i ./src/styles/tailwind.css -o ./src/styles/styles.css", "start": "npm run tailwind:build & react-script.. 2021. 11. 8. 리눅스 안드로이드 스튜디오 한글입력 문제 해결법 리눅스 환경에서 안드로이드 스튜디오를 사용하는데, 한/영 전환이 안됐다. 느므느므 답다팼따!!!! 18개월 넘게 그냥 영어로만 사용해왔다가 드디어 해결했다. 핸드폰으로 검색했을때는 개발자 페이지가 'This page isn't working' 맨날 뿜었는데, 컴퓨터로 접속하니 잘 나와서 해결했다. 저 처럼 답답함에 빠질 분들을 위해 남깁니다. - 한/영 전환 지정키를 여러 조합으로 해봐도 X - 노트북 키보드, 외부 키보드 x3 조합해봐도 X - 키보드 레이아웃 변경해봐도 X - fcitx 입력기로 바꿔보래서 시도한 기억은 있는데, 성공한 기억은 X 알려진 해결 방법은 3가지 있습니다. 1: iBus를 동기 모드로 강제 전환 $ IBUS_ENABLE_SYNC_MODE=1 ibus-daemon -xrd 2.. 2021. 10. 19. Dartlang class에 Object를 argument로 넘겨주기 딴지, 훈수 대환영입니다. 문제 있으면 지적해주세요 굽신굽신.. class Shop { final dynamic shopObject; late final int id; late final String shopCode; late final String shopName; late final String address; late final bool authorized; late final bool publicShop; late final String shopImage; Shop({required this.shopObject}){ assert(shopObject != null, 'shop object is not nullable'); assert(shopObject['id'] != null, 'shop id i.. 2021. 6. 20. 뒷 배경에 이미지를 포함한 위젯 만들기 https://stackoverflow.com/questions/45745448/how-do-i-stretch-an-image-to-fit-the-whole-background-100-height-x-100-width Your Question contains the first step, but you need width and height. you can get the width and height of the screen. Here is a small edit //gets the screen width and height double Width = MediaQuery.of(context).size.width; double Height = MediaQuery.of(context).size.height; .. 2021. 6. 15. 이전 1 2 3 4 5 다음