Send my app programmatically in flutter app - flutter

I have this flutter app fully done but I want to add a button that say share when user clicks on this button it share the entire apk to a friend either using Xender or any other sharing medium.
I kno it may not be possible on iOS but I want to do this on flutter Android.
How can this be achieved.

Why don't you upload to apk to any storage hosting then send the link when click share.
Another way is to use Flutter share package , you can take a look at the documentation for more info

Related

How to make push notifications target a flutter app?

Using firebase web, I want to trigger a notification in a flutter app from a dashboard. In other words, I want to target the flutter app whenever I make certain changes in the dashboard using firebase cloud messaging.
Can I do that? Or do I have to write separate codes in both the flutter app and the web app?
when you trigger a notification in a flutter app from a dashboard. You can choose which app to push (Android/iOs/web)
Just to add more on Vu Thanh's answer, you can use the User Segment in the Messaging console to select the Flutter app you want to send notifications to. You can read about a related post here.

Instagram in-app browser does not support add to home screen feature for pwa

https://caniuse.com/web-app-manifest
https://developer.mozilla.org/en-US/docs/Web/API/BeforeInstallPromptEvent
Here it says, android webview supports add to home screen. Even then in instagram's in-app browser it doesn't work.
Even the custom install that we trigger using beforeinstallprompt also doesn't show up.
Not any of the documentations mention anything about this.
In IOS there's a way you can install web apps using profile configuration files. Do you know if there is a way to do the same in Android? If so, we can redirect the bio link to an install page of our web apps.

FLUTTER Get access to an app feature only if you share the app

I made an app in flutter and it has special features. I want my users to be forced to share my app with their friend via email or messenger or any similar messaging app. I found the flutter_share package that could be suitable for the application (https://pub.dev/packages/flutter_share#-readme-tab-).
But I am not sure how can I be sure when the user leaves the app he is going to share it?
Can you help me with some demo app that has mentioned features?

How can I open a specific page of another app from my app in flutter?

I’m trying to build a functionality where i want to open the settings page of WhatsApp from a simple onTap gesture in my app. To launch WhatsApp I’m using this dependency:
https://pub.dev/packages/device_apps
However it isn’t helping me open the settings page specifically.
Is there a tool available for me to do this?
You can use this by passing the package name of the another application.
dependencies:
android_intent: ^0.3.5
WhatsApp has a URL scheme to launch the app and send a message to a phone number.
iOS Url Scheme
Android Url Scheme
But I don't think that you will be able to launch WhatsApp settings directly.

Can I build a mobile website that has access to the iphone camera?

Does webkit have access to the camera API on the iphone? What about other phones? I want to build a mobile website that enables users to click on a button that opens the camera, ask if you want to take a new picture or user an existing one (assume the former), take a picture, confirm the picture is good, then be routed back to website where the new picture is uploaded. is this possible? many thanks!
At this time, this is not possible. You can, however, use a toolkit such as PhoneGap to acheive this.