-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] IOS start method #48
Comments
The library will ask for permission if permission is not currently granted. If you call start and permissions are already granted then there is no requirement to show a pop up so the library continues without this. |
But I just want to ask for permission on my onboarding screen, and not when the user opens the app, can I change this behavior? What do you suggest in that situation? The IOS docs of Push Beamer said: |
You have raised this issue against the Flutter lib - are you using the Flutter library or directly using the Swift library? |
I'm using the Flutter package, I just saw the native to check if the Flutter package is doing the same as the native... and apparently, it's not... but do you have some options here? if I do not want to check permission when the user opens the app, how can I achieve that? |
flutter_local_notifications will do the job.
|
@shanaka-sync don't understand your idea... 🤔 |
const AndroidNotificationChannel channel = AndroidNotificationChannel(
|
Yes, thank you, I know how to ask for permission, but this package asks when the user opens the app and I don't want to. I just want to change this behavior, I want to choose when to ask for permission... this is the issue about it =/ |
I don't believe it is possible to control when the prompt is shown on iOS. I will raise this internally for review - the behaviour does appear to differ between Android and iOS. |
Hello, first, thank you for the awesome package.
I have a question about the start method on IOS, does the start method ask for notification permission? on Android, it doesn't. Can I change that?
I have an onboarding notification screen to ask permission, but it's not working on IOS because it was previously asked.
The text was updated successfully, but these errors were encountered: