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 |
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 |
|
Thank you very much! |
You should not use all inherit. As per the docs:
you should only add
home_widgetto your Widget target: