Interactive Widgets for iOS #297
-
Since iOS 17 interactive home widgets are supported. Therefore I added a BackgroundIntent as described in this tutorial: https://medium.com/@ABausG/interactive-homescreen-widgets-with-flutter-using-home-widget-83cb0706a417
To be able to import home_widget, I added the following to the Podfile:
When I try to build, I get the following error:
This is my complete podfile
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You should not use all inherit. As per the docs: you should only add target 'YourWidgetExtension' do
use_frameworks!
use_modular_headers!
pod 'home_widget', :path => '.symlinks/plugins/home_widget/ios'
end |
Beta Was this translation helpful? Give feedback.
-
Thank you very much! |
Beta Was this translation helpful? Give feedback.
You should not use all inherit. As per the docs:
you should only add
home_widget
to your Widget target: