본문 바로가기
728x90

전체 글584

flutter_local_notifications(3/3) void selectNotification(String payload) async { if (payload != null) { debugPrint('notification payload: $payload'); } await Navigator.push( context, MaterialPageRoute(builder: (context) => SecondScreen(payload)), ); } In the real world, this payload could represent the id of the item you want to display the details of. Once the initialisation is complete, then you can manage the displaying of n.. 2022. 7. 20.
flutter_local_notifications(2/2) Full-screen intent notifications If your application needs the ability to schedule full-screen intent notifications, add the following attributes to the activity you're opening. For a Flutter application, there is typically only one activity extends from FlutterActivity. These attributes ensure the screen turns on and shows when the device is locked. 프로그램에서 전체 화면 intent 알림을 예약해야 하는 경우 당신이 열고 있는 .. 2022. 7. 20.
FCM icon 바꾸기 https://stackoverflow.com/questions/46676014/how-to-change-the-android-notification-icon-status-bar-icon-for-push-notificatio How to Change the Android Notification Icon/Status Bar Icon for Push-notification in #flutter? I want to replace the default Icon with my own icon for Push-notifications. Now the App show the Icon as White box . stackoverflow.com 2022. 7. 20.
flutter_local_notifications(1/2) 왜 인지는 모르고 notification 을 잘 쓰려면 이걸 넣어야한다길래 넣었는데, notification 으로 다양한 기능을 넣어줄 수 있다는 걸 알게 되었다!ㅎㅎ . https://pub.dev/packages/flutter_local_notifications#ios-pending-notifications-limit flutter_local_notifications | Flutter Package A cross platform plugin for displaying and scheduling local notifications for Flutter applications with the ability to customise for each platform. pub.dev https://www.you.. 2022. 7. 19.
728x90