전체
-
디자이너-개발자 협업 라이브러리 react-sketchappdev/web 2019. 10. 10. 10:04
https://github.com/airbnb/react-sketchapp airbnb/react-sketchapp render React components to Sketch ⚛️💎. Contribute to airbnb/react-sketchapp development by creating an account on GitHub. github.com 소개글 https://brunch.co.kr/@designforhuman/23 [번역] 코드로 디자인을 by Airbnb React Sketch.app 오픈소스 라이브러리 공개 | 원문: Painting with Code: Introducing our new open source library React Sketch.app. 오늘 우리는 디자인 시스템을 만..
-
Visual Studio Code 에서 Qt/c++ 개발 설정dev/QT 2019. 8. 28. 13:38
https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools C/C++ - Visual Studio Marketplace OverviewQ & ARating & Review marketplace.visualstudio.com https://code.visualstudio.com/docs/cpp/config-msvc Configure Visual Studio Code for Microsoft C++ Configure the C++ extension in Visual Studio Code to target Microsoft C++ on Windows. code.visualstudio.com https://retifrav.github.io/bl..
-
리엑트에서 부트스트랩 사용 - reactstrapdev/web 2019. 8. 5. 19:05
https://www.npmjs.com/package/reactstrap reactstrap React Bootstrap 4 components www.npmjs.com 설치 npm install --save bootstrap npm install --save reactstrap react react-dom 임포트 import 'bootstrap/dist/css/bootstrap.css'; 사용 import { Button } from 'reactstrap'; 사용가능한 컴포넌트 목록 https://reactstrap.github.io/components/alerts/ reactstrap - Alerts Alerts This is a primary alert — check it out! This is a..
-
안드로이드 위젯에 동적으로 애니메이션 효과 주기dev/android 2019. 7. 31. 15:05
데이터 업데이트에 대한 노티 효과를 위해 TextView 에 애니메이션 추가를 위해 검색 https://stackoverflow.com/a/19021578/3543411 How to make the textview blinking Guys i have a textview which i need it to be blinking please help me with it. stackoverflow.com 리소스로 애니메이션을 만들어 액티비티에서 동적으로 로드하여 사용. 애니메이션 효과에 대한 부분은 별도 스터디가 필요.
-
Cannot perform specific action because there does not exist a valid use pool domain associated with the user pooldev/aws 2019. 7. 18. 15:52
Cannot perform specific action because there does not exist a valid use pool domain associated with the user pool Cognito user pool 로 사용자 가입시 웹 콘솔에서 추가된 사용자는 확인이 되지만 위와 같은 오류가 반환될 경우가 있다. Cognito 설정중 이메일 확인 메시지를 링크로 설정하고 앱 통합-도메인 이름 에서 도메인을 설정하지 않을 경우 발생된다. 가입 확인 메일에 링크할 url 의 도메인이 설정되지 않아 메일을 보낼수 없는 상황이다. 도메인을 설정하고 가입을 하면 정상적으로 가입이 되고 가입 확인 메일도 전송된다.
-
amplify auth updateUserAttributes 후 currentAuthenticatedUser 갱신 안되는 문제dev/aws 2019. 7. 4. 16:13
updateUserAttributes 로 정보 업데이트를 하고 currentAuthenticatedUser 로 반환되는 user 정보에는 업데이트 전 데이터가 들어있음. Auth.currentAuthenticatedUser({ bypassCache: true }); Auth.currentAuthenticatedUser({ bypassCache: true }); 업데이트 후 위 코드 실행하여 변경된 user 조회 가능. https://github.com/aws-amplify/amplify-js/issues/2534 Updating user attributes does not update cached user data · Issue #2534 · aws-amplify/amplify-js Is your fea..