본문 바로가기
728x90

전체 글565

static 변수만 사용하고 constructor 쓸 필요 없는 class class AppColor { AppColor._(); static const Color notWhite = Color(0xFFEDF0F2); static const Color nearlyWhite = Color(0xFFFEFEFE); static const Color white = Color(0xFFFFFFFF); static const Color nearlyBlack = Color(0xFF213333); } https://velog.io/@vkdl370528/Dart-Private-Contructor에-관하여 [Dart] Private Contructor에 관하여 Dart, Flutter - Private Constructor velog.io 2022. 9. 1.
IntrinsicHeight , IntrinsicWidth IntrinsicHeight 위젯은 child인 Row가 crossAxisAlignment가 stretch일때, 높이의 범위를 Row의 하위 위젯 중 가장 높은 것에 맞추어 준다. 중요한 건 Column이나 Row를 자식으로 해야한다. 사용해야하는 이유는 각각의 위젯의 사이즈를 모르면, align을 맞추기가 어렵기 떄문이다 (특히 .end 나 .center로) 그러므로 각각의 위젯의 사이즈를 가장 큰 것으로 통일한다면 해결이 원활하다. 다음 예제를 보면 감이 좀 올 것이다 https://www.woolha.com/tutorials/flutter-using-intrinsicwidth-widget-examples Flutter - Using IntrinsicWidth Widget Examples Exampl.. 2022. 8. 29.
flutter google map crash https://github.com/flutter/flutter/issues/105965 [google_maps_flutter] App crashes with a java.lang.NullPointerException while popping a screen with a GoogleMaps widget · Issue Steps to Reproduce I have reproduced it on a Pixel 3 in debug mode REAL (Android 12) and emulated (api level 30). Execute flutter run on the code sample with google_maps_flutter: ^2.1.7 dependency ... github.com 여기서 열띤 토론.. 2022. 8. 29.
여러토큰 fcm 한 번에 보내기 https://firebase.flutter.dev/docs/messaging/notifications Notifications | FlutterFire Notifications are an important tool used on the majority of applications, aimed at improve user experience & used to engage users firebase.flutter.dev 2022. 8. 27.
728x90