Anandh Krishnan
Anandh Krishnan

Reputation: 6022

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

Upvotes: 31

Views: 3784

Answers (1)

Praxder
Praxder

Reputation: 2759

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).

Upvotes: 4

Related Questions