Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LockScreen widget in Flutter?

There are some plugins like home_widget: ^0.1.6 that supports only HomeScreen Widgets.

Recently Apple launched LockScreen Widgets on iOS 16.

Is there any plugin for that? How do I implement that?

enter image description here

like image 688
Anandh Krishnan Avatar asked Sep 04 '25 02:09

Anandh Krishnan


1 Answers

At the time of this writing, there are no known plugins that do that. There are two options moving forward, based on timeline for when you need this functionality:

  1. Wait for someone to create a plugin that does this
  2. Create the plugin yourself. Follow the Apple Docs and write a custom Flutter plugin (and then preferably publish it to pub.dev for others to benefit from as well).
like image 53
Shredder2794 Avatar answered Sep 07 '25 14:09

Shredder2794