I want to show the toast message on anywhere in device (App will run in background via ionic plugin). I want to show the toast for the time user will select from the option (like 10ms, 1s, 2s, etc... and this will be handle by the ion toast). My only question is can I show it in background when app is running in background like whatsapp or hike or any other app which is running in background?
I will build this in ionic 4.
Related
The app icon's red badge number no longer seems to update on the app icon whenever I get a push notification and I'm not sure why.
Recently, I dealt with the problem of the app icon red badge not going away after push notifications are received, so I implemented the flutter_app_badger package in order to get rid of the app icon badge number after going to a specific part of the app.
But however this introduced a new problem of the app icon badge no longer appearing at all now whenever I receive push notifications.
So instead I tried another package called flutter_dynamic_icon, which has the ability to alter the badge number on the app icon as well and unfortunately the problem of the app icon badge not appearing still persists.
The idea is whenever the user goes to a certain new part of the app that the notification refers to, (or if the notification is clicked on) it gets rid of the notification badge icon on the app icon (or at least decrements it by 1).
So basically, the app icon badge could be altered when I implemented the package but now the app icon badge number no longer appears whenever I receive a push notification.
Can anyone help me understand why this may stop working all of a sudden after adding the flutter_dynamic_icon or flutter_app_badger package?
What would cause the app icon badge to no longer appear after receiving a push notification?
Some info if it helps, I'm currently using:
flutter_dynamic_icon (I was using flutter_app_badger, then when the app icon badge no longer appeared I switched to flutter_dynamic _icon)
Firebase cloud messaging for push notifications (though it was working before I tried using flutter_app_badger, then switched the flutter_dynamic_icon.
Thank you very much.
I want the application not be shown when tapping on the notification.
I want to do some background task or just simply open a URL but not the application.
For instance, I found that I can simply add web view in my application or open the browser to open the url, but how can I prevent showing the application(not bring it to foreground)?
I also don't want to do the background task with silent push notification as I want to show this notification to the user.
I want to test out my app by using the app Ionic View. Unfortunately all I see is a blank screen with a blue navbar header.
I have uploaded my app using ionic upload. Then I have synced my app in Ionic View and finally I press 'View app'. I see the Ionic loading animation and then I just see a white screen with a blue navbar header.
My app uses a blue navbar header, so it is loading something.
When I run my app in the browser or when I debug it using a USB-cable and live debug on my phone, everything is just working fine. So why isn't it possible to use my app using Ionic View?
Is it possible to set the user selected icon as launcher icon while installing the application in IOS?
Our client was asking the requirement as while installing itself user can select their custom launcher icon for Iphone Application. please help me to find out the solution.
Without a jailbreak, no, you can not do it.
The icon and the background image used while loading the app are both static. The first thing you can change is after the app has loaded, then you could have a user chosen splash screen.
hi i am creating an map application ,
initially when i click on the application icon on iphone a Splash screen showing application logo and a loading bar should be shown.
Expected Process:
Screen should achieve following objectives of initialization
1.Initialization of Synchronization Web Service
2.Create or Open available database on the device and keep the referece in the memory for quicker calling.
3.Validation of available UserInformation Record in database
4.Build up a Weather Map which should hold all 37 types of weather available for easy future reference
On each processing step progress bar should grow/fill with 25%
How could this be possible.Please anybody help me in achieving this tasks
The splash screen is just an image that should be called default.png. It will display during the launch of you app.
To realize what you want you have to define the first view controller with the same background and a UIProgress and do your sync and other processes.
When initialization is done you have to display your "real" first view controller
When user launch the application you could show a splash screen for 1 or 2 second after that you could show the progress (status) of your application using text msg.
for example "Initialization of Synchronization Service" ,"Storing to data base", "Loading map" .
The above text msg. is just a reference,you could have more descriptive text to show on screen along with progress bar.