본문 바로가기

Flutter15

[Flutter] Android Studio 버벅일 때 갑자기 클릭도 안되고 IDE가 버벅일 때가 있다. 이럴 때는 terminal에 $Flutter clean $Flutter pub get 을 입력하면 된다. 그럼 잘 됨~ 2022. 11. 19.
[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.
[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.
[flutter] async await에 대해서 https://dkswnkk.tistory.com/24 [flutter] async와 await 란 무엇인가? async / await 란 무엇인가 async / await 또한 Dart의 비동기 처리를 위한 것으로 Future 를 조금 더 용이하게 다루기 위한 키워드이다. (1). await 키워드를 사용한 함수는 무조건 async 함수 이어야 한다. (2).. dkswnkk.tistory.com 잘 정리한거 2022. 10. 10.