본문 바로가기

전체 글489

Git 명령어 정리(clone, commit, push) Git 초기 설정 git config --global user.name '유저 이름' git config --global user.email '가입 시 사용한 메일 주소' Git clone (GitHub의 레파지토리를 로컬에 저장) Git Hub에 레파지토리 생성 > git 주소 복사 > 컴퓨터에서 폴더 생성하고 싶은 위치로 가서 git bash > git clone '깃 레포지토리 주소' > 폴더 생성 완료 Git push (내 컴퓨터(로컬)의 수정사항을 Git hub로 커밋) 만들어진 폴더로 들어가서 git bash git add '파일명' (폴더의 내용 전부 올리고 싶으면 git add . 입력) git commit -m '커밋 내용' git push origin main Git pull (Git .. 2021. 12. 30.
[오류해결] unhandled exception: user denied permissions to access the device's location. 오류 상황 geolocator 패키지를 사용하여 사용자의 위치 정보를 확인하는 어플 제작 중 다음과 같은 오류(user denied permissions to access the device's location.)가 발생하며 사용자에게 위치 정보를 묻는 창이 뜨지 않는 오류 해결 노력 1. 프로젝트 새로 만들기 2. AVD 삭제 및 재생성 3. geolocator 버전 변경 4. AndroidManifest.xml에 사용자 위치 정보 동의 코드( ) 삭제 후 다시 붙여넣기 반복 ->모두 실패 오류 해결 사용자의 위치정보를 받아오는 코드인 Position position = await Geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.high.. 2021. 12. 28.
[코딩셰프]플러터 강좌 내용 정리-9(반복문을 이용한 로또 번호 생성기 제작) 보호되어 있는 글 입니다. 2021. 12. 28.
[코딩셰프]플러터 강좌 내용 정리-8(코드 리팩토링) 보호되어 있는 글 입니다. 2021. 12. 27.
Git, Github 참고 사이트 이모지(Readme 작성 시 사용)https://www.emojiall.com/ko/emoji/%E2%98%BA “☺” 뜻: 웃는 얼굴 Emoji이것은 고전적인 웃는 얼굴이며 이모티콘의 선구자로 간주 될 수 있다.눈을 가늘게 뜨고 붉게 물 들었다. 일반적으로 행복, 따뜻함, 행복 또는 감사를 표현하는 데 사용된다. 텍스트 이모티콘 :)www.emojiall.com  마크다운https://gist.github.com/ihoneymon/652be052a0727ad59601 마크다운(Markdown) 사용법마크다운(Markdown) 사용법. GitHub Gist: instantly share code, notes, and snippets.gist.github.com https://velog.io/@yuuuye.. 2021. 12. 27.
[오류해결] the plugin `fluttertoast` uses a deprecated version of the android embedding. 오류 상황 pubspec.yaml 파일에 다음과 같이 입력하니 the plugin `fluttertoast` uses a deprecated version of the android embedding. ~ 라는 오류 발생. 해결 플러터 토스트 공식문서(https://pub.dev/packages/fluttertoast)를 통해 fluttertoast의 최신버전을 확인하고 버전을 높여 등록하였다. 오류 해결 완료. 2021. 12. 27.
[코딩셰프]플러터 강좌 내용 정리-7(Navigator) 보호되어 있는 글 입니다. 2021. 12. 25.
[코딩셰프]플러터 강좌 내용 정리-6(Column widget과 Row widget의 이해) 보호되어 있는 글 입니다. 2021. 12. 25.
[코딩셰프]플러터 강좌 내용 정리-5(Container widget 이해) 보호되어 있는 글 입니다. 2021. 12. 25.
[오류해결] flutter: don't support null safety VS code 터미널에 flutter run --no-sound-null-safety 입력 > 해결 참고: https://stackoverflow.com/questions/64917744/cannot-run-with-sound-null-safety-because-dependencies-dont-support-null-safety 2021. 12. 25.
[코딩셰프]플러터 강좌 내용 정리-4(Toast) 보호되어 있는 글 입니다. 2021. 12. 25.
[코딩셰프]플러터 강좌 내용 정리-3(SnackBar) 보호되어 있는 글 입니다. 2021. 12. 24.
반응형