Can we change an apps icon from inside the app? - flutter

Is there a way I can have an in-app option to change its icon ?
I am trying to build a bootstrapped app builder/generator, where you can rename the app, set its icon and color styles from within the app. Is this even possible ?
My question is specific to a Flutter approach that will work for both Android and iOS. Would this be possible ? if yes, then a library has to be made.

Related

How to handle window visibility when in recent apps view

I want to hide the app preview of a single specific screen in recent apps when the user leaves the app. Like if the user is on a secure payments page but pressed recent apps or changes the app to another one then the preview we get in-app switcher (or recent apps) should be hidden.
The Visibility widget only visibility widgets of the app.
As suggested by Akora Ing. DKB, we have to write platform code to disable previews & screenshots for a specific platform. (Reference video)
For Android, we have to add getWindow().addFlags(LayoutParams.FLAG_SECURE) for flutter activity. This disables previews & screenshots for the whole flutter view. To only disable a single screen we'll need another flutter activity.
I don't know about iOS but on Android, we can create multiple flutter activities. Problem is, the FlutterActivity will automatically start the main Dart entry-point. So if we want to use a different entrypoint we would have to duplicate the FlutterActivity and give it a custom Delegate which starts the other entry-point in its onCreate().
I'm sure this answer would not be completely right, but it would be helpful for someone.

How to use Flutter to implement a button like ios virtual home button

I want to create a button can move to any position like iPhone Style (Virtual Home Button) in Flutter but I don't know any packages or any library can do it. Moreover, I'd like the button to be able to show along with a specific app, eg. dial-up UI. If I deploy to desktop, will its behavior the same with mobile?
ios virtual home button
show button along with dial-up UI
Hope you guys help me ways to create it.
I have tried with unicorndial, floating_bubble, popup window, etc.
but all of them are widget within flutter app, instead of system-wide.
Sorry you can't really create anything like that outside of your App context. Apple is very strict in situations like this.
You can implement this sort of feature in Android by using Floating Service. But for Apple it's a NO NO.

Tizen SDK TV Icon

I am currently building an application for commercial use, but I want to be sure my Icon loos correct in the My Apps screen on the television. As of know I only see the default developer icon. I have replace the icon with my own in my project. I co see Icon in the recent pop up menu, but it is missing from My Apps. In the attachment IMG_2834.jpg has the black icon which is ok, but IMG_2835.JPG is the basic default Icon. Well I dont want that I would like to see my Icon on this screen.
Would you please check these Articles, They mentioned 'In order for application icons to display on the Samsung Apps screen must comply with the conditions given...'
Creating and Registering App Icons
Creating and registering App Icons and Screenshots

How do I change the small app icon for my app in the facebook developers console?

The UI for developers.facebook.com changed again and I was wondering where to find the option to change the small app icon. The 16 * 16 sized icon.
These settings are now located under Products -> App Center
(If that doesn’t show, then you need to add it first.)

Change Launcher icon while installing the app in IOS?

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.