Bropolo

Results 23 comments of Bropolo

Today Flutter upgraded to 3.19.0 from 3.16.9. Error not throw, but focus not changed to next field, only the keyboard hide. I also add FocusScope.of(context).nextFocus(), but nothing happens. ```dart textInputAction:...

Are you sure there are no errors with String in Text() ? `Text('${counterStore.count}',),`

[Lyokone](https://github.com/Lyokone) If I call FirebaseMessaging.instance.getInitialMessage().then((val) => .....) after few times later, (I mean some seconds), it works... In Main initState() - it doesn't work. May be u can writter better...

Hi [blue492](https://github.com/blue492) please show how u subscibe on message. Dont forget u need call await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform); before subsrcibe ```Dart bool isInitialApp = false; @pragma('vm:entry-point') Future firebaseMessagingBackgroundHandler(RemoteMessage message) async {...

[blue492](https://github.com/blue492) u use firebase token ? I mean u need that: ```Dart Future getToken() async { if (Platform.isIOS) { var apns = await firebaseInstance.getAPNSToken(); debugPrint('apns $apns '); } var firebase...

> > [blue492](https://github.com/blue492) u use firebase token ? I mean u need that: > > ```dart > > Future getToken() async { > > if (Platform.isIOS) { > > var...

try to send with Notification object (title, body) https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#resource:-message

To check the status of your push notification, please follow the steps below. 1. Open the Console app on your Mac 2. Select your iPhone from the devices list on...