When adding libraries to my project, I need to add the following code snippet to the Podfile:
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
However, I cannot find a way to do this within FlutterFlow without downloading the code.