본문 바로가기

전체 글188

[Flutter] Flutter Image crop, Flutter image picker, 플러터 사진 자르기 플러터 선택한 사진 자르는 방법 글 작성 개요 : 가끔 우리는 사진을 갤러리에서 고를 필요가 있습니다. 그리고 그 사진을 완벽하게는 아니더라도 자르고싶을 때가 있습니다. 그것에 대해 설명할게요 -Getx https://pub.dev/packages/get get | Flutter Package Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX. pub.dev https://blog.codefactory.ai/flutter/getx-navigation/ [앱개발] [Flutter] Flutter 개발자는 무조건 알아야 하는 GetX [#1-Navigation] Flutter.. 2023. 2. 8.
[Flutter] realtimedatabae에서 Data를 불러오자! 3편 RealtimeDatabase불러오기 https://firebase.google.com/docs/database/flutter/start?authuser=0 실시간 데이터베이스 시작하기 | Firebase 실시간 데이터베이스 Firebase Summit에서 발표된 모든 내용을 살펴보고 Firebase로 앱을 빠르게 개발하고 안심하고 앱을 실행하는 방법을 알아보세요. 자세히 알아보기 이 페이지는 Cloud Translation API를 통해 번역되었습니 firebase.google.com 요약 : RealtimeDatabase의 get()이 뱉어주는 응답은 List 혹은 Map이기 때문에 파싱을 잘해야 한다. 일단 set부터 하는게 좋겠다. getData를 다음과 같이 바꿔준다. 그러면 이렇게 될 것이다. 다시 추가했던 부분을 지워주기 우리는.. 2022. 12. 16.
[Flutter] realtimedatabae에서 Data를 불러오자! 2편 Firebase 추가 전편에서 JsonData를 flutter에 불러오는 방법에 대해서 posting을 하였다. 그러면 Flutter에서 Realtimedatabase를 불러오자! 일단 database에 realtime databse를 추가하자! https://firebase.google.com/docs/flutter/setup?platform=android Flutter 앱에 Firebase 추가 Google은 흑인 공동체를 위한 인종적 평등을 추구하기 위해 노력하고 있습니다. 자세히 알아보기 이 페이지는 Cloud Translation API를 통해 번역되었습니다. Switch to English 의견 보내기 컬렉션을 사용해 firebase.google.com firebase login dart pub global act.. 2022. 12. 15.
[Flutter] Json Data를 불러오자 1편 개요 : HTTP통신을 통해 데이터를 받아오기 위해서 RsetAPI를 활용한다. RestAPI는 목적이 어떤 페이지를 여는 것이 아닌, 데이터 전송에 대한 목적이다. 클라이언트 쪽으로 데이터를 주고자 하는데 이것은 JSON방식으로 데이터를 주기위한 목적이다. 1. JSON이란 무엇일까? 데이터를 저장 및 전송할 때 데이터 형식으로 자주사용된다. (JavaScrpit Object Notation) { "users": [ { "name": "lee", "age": 32 }, { "name": "bebe", "age": 26 } ] } 과 같이 사용욀 수 있다. 정확한 RestAPI의 기술을 보고싶다면 https://www.redhat.com/en/topics/api/what-is-a-rest-api 참고하면.. 2022. 12. 14.
[flutter] RealTime Database 버전 오류 수정... 구글에 Docs 오타 보냈음... (Error running pod installError, launching application on test.) https://firebase.google.com/docs/firestore/quickstart#set_up_your_development_environment Cloud Firestore 시작하기 | Firebase Firebase Summit에서 발표된 모든 내용을 살펴보고 Firebase로 앱을 빠르게 개발하고 안심하고 앱을 실행하는 방법을 알아보세요. 자세히 알아보기 이 페이지는 Cloud Translation API를 통해 번역되었습니 firebase.google.com 이거 보면서 환경설정 중이었는데... 왜 계속 안되는지... pod file 다시 깔고 해봤는데 너무 에러가 남... Launching lib/main.dart on test in debug mode... Running pod .. 2022. 11. 20.
[Flutter] Android Studio 버벅일 때 갑자기 클릭도 안되고 IDE가 버벅일 때가 있다. 이럴 때는 terminal에 $Flutter clean $Flutter pub get 을 입력하면 된다. 그럼 잘 됨~ 2022. 11. 19.
[Jsp] Intellij 와 Jsp https://goddaehee.tistory.com/195 [IntelliJ] Intellij 설치방법 [IntelliJ] Intellij 설치방법 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ IntelliJ 설치 방법 ] 입니다. : ) Eclipse에서 IntelliJ로 갈아탄 친구에게 추천받았는데, 개발 퍼포먼스 면에서 엄청 향상이 있었 goddaehee.tistory.com 인텔리제이 설치후... New Project... 톰켓 버전 확인해야함. https://twoicefish-secu.tistory.com/343#recentComments [intellij] Apache Tomcat jsp 200 Servlet 404 intellij + apache tomcat 사용시 jsp는 200 se.. 2022. 11. 17.
[Flutter] 화면이동 정리 에러 type is not a subtype of type in type cast where... 에러 push랑 pushname을 앎을 전재로 함 왜 Navigator.pushnamed를 써야할까? https://github.com/flutter/flutter/issues/3867 Document the pros and cons of using push vs pushNamed · Issue #3867 · flutter/flutter Right now I’m only using Navigator.push(context, new MaterialPageRoute(... I know there are some other options like the routes named parameter to MaterialAp.. 2022. 11. 9.
[Flutter] Text에 shadow 넣기 https://owenhalliday.co.uk/shadows/ Text Shadows in Flutter In this post we’re going to explore how to use text shadows in Flutter. Text is a massive part of any application, and using shadows can… owenhalliday.co.uk 보면 TextStyle에 shadow는 List형태이다. 간단하게 쉐도우를 정의할 수도 있다. 위와같은 코드로도 정의할 수 있다. 출력본 2022. 10. 31.
[Macbook] 한영전환 딜레이 없애기 https://justdoit0730.tistory.com/m/entry/Mac-M1-%ED%95%9C%EC%98%81-%EC%A0%84%ED%99%98-%EB%94%9C%EB%A0%88%EC%9D%B4-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95 그냥 봐라 2022. 10. 20.
[Flutter] lost connection to device 에러(파이어베이스 auth 클릭시 튕겨서 속상해요~) 결론 : 문서를 잘 읽자 https://pub.dev/packages/firebase_core firebase_core | Flutter Package Flutter plugin for Firebase Core, enabling connecting to multiple Firebase apps. pub.dev 코어 설치 https://www.youtube.com/watch?v=J3OqrOJpPVQ&ab_channel=%EC%BD%94%EB%94%A9%EC%85%B0%ED%94%84 파이어베이스 기본설정 하기 https://pub.dev/packages/flutter_auth_ui flutter_auth_ui | Flutter Package Unofficial firebaseui package for fl.. 2022. 10. 17.
[flutter] 그림자 설정법 https://stackoverflow.com/questions/52227846/how-can-i-add-shadow-to-the-widget-in-flutter How can I add shadow to the widget in flutter? How can I add shadow to the widget like in the picture below? This is my current widget code. stackoverflow.com 그건 바로 stackoverflow 2022. 10. 11.