codenameakshay / async_wallpaper

https://pub.dev/packages/async_wallpaper
MIT License
23 stars 19 forks source link

Open Android wallpaper chooser #40

Closed guyluz11 closed 3 weeks ago

guyluz11 commented 4 weeks ago

Is your feature request related to a problem? Please describe. I would like to have the option to open the Android native wallpaper chooser page

Describe the solution you'd like A new function that when get executed Android native wallpaper chooser will get open

Describe alternatives you've considered Calling Android native code

Additional context Here is how I do it in Java

val intent = Intent()
intent.setAction("android.service.wallpaper.LIVE_WALLPAPER_CHOOSER")
startActivity(intent)
finish()