본문 바로가기

Flutter30

Flutter FCM 활용 총정리 (서버연동까지) 아래 두개는 테스트용 템플릿입니다.[서버템플릿]https://github.com/dusagong/FCM_SERVER GitHub - dusagong/FCM_SERVER: simple node serversimple node server. Contribute to dusagong/FCM_SERVER development by creating an account on GitHub.github.com [클라이언트 템플릿]https://github.com/dusagong/FCM_APP-Flutter-with-AOS-IOS- GitHub - dusagong/FCM_APP-Flutter-with-AOS-IOS-Contribute to dusagong/FCM_APP-Flutter-with-AOS-IOS- develo.. 2025. 9. 16.
flutter android 앱 아이콘이 검정색일때 https://github.com/fluttercommunity/flutter_launcher_icons/issues/600 In Android I See only a black Circle as icon · Issue #600 · fluttercommunity/flutter_launcher_iconsℹ️ Info Flutter 3.24.1 • channel stable • https://github.com/flutter/flutter.git Framework • revision 5874a72aa4 (8 weeks ago) • 2024-08-20 16:46:00 -0500 Engine • revision c9b9d5780d Tools • Dart ...github.com adaptive_icon_back.. 2025. 7. 2.
flutter + java -> 안드로이드빌드 빌드를 하려면 자바가 필요하다/ apk,aab [맥 os 자바설치]brew install openjdk@17 echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.zshrcecho 'export CPPFLAGS="-I/opt/homebrew/opt/openjdk@17/include"' >> ~/.zshrc echo 'export JAVA_HOME=$(/usr/libexec/java_home -v 17)' >> ~/.zshrc source ~/.zshrc --------------------------------------------------------------------- jave --version을 확인해보고 버전을 본다!!!  gra.. 2025. 3. 25.
Roman Ismagilov 공부회. flutter tap effect native인척하기. 자연스러운 버튼! https://medium.com/@pomis172/making-flutter-apps-look-more-native-part-1-tap-effects-48a59cb158bf Making Flutter apps look more native. Part 1: tap effectsBy default, if you are using InkWells to handle tap events in your UI, a ripple effect will be applied. The issue here is that while the…medium.comInkWells쓰면 리플효과가 있다. 리플 효과는 안드로이드 디자인에서는 필수적인 요소이지만, iOS에서는 다소 어색하게 보일 수 있다는 점이다.대신 ios는 버튼을 탭할 .. 2025. 3. 10.
Flutter baseline 텍스트도 위젯이다. 기본으로 좌상단에 위치한다. 베이스라인 위젯Baseline classA widget that positions its child according to the child's baseline.This widget shifts the child down such that the child's baseline (or the bottom of the child, if the child has no baseline) is baseline logical pixels below the top of this box, then sizes this box to contain the child. If baseline is less than the distance from the top of the chi.. 2025. 3. 9.
flutter 삼항연산자 라우팅 문제 before: onTap: () => Get.to(() => isNotiCenter ? NotiSettingView( widthMul: widthMul, ) : NotiHistoryView( widthMul: widthMul, )),after:onTap: () { print('hi'); print(isNotiCenter); if (isNotiCenter) { print('Navigating to NotiSettingView'); Get.to(() => NotiSettingView(widthMul: widthMul)); } else { print('Navigating to NotiHistoryView'); Get.to(() => NotiHistoryView(widthMul: widthMul)); } }, .. 2025. 2. 14.