Complete the code to set the app version in pubspec.yaml.
version: 1.0.0+[1]
The build number after the plus sign is set to 1 for the first release.
Complete the code to add the iOS deployment target in ios/Podfile.
platform :ios, '[1]'
The default and recommended minimum iOS deployment target for Flutter apps is 12.0.
Fix the error in the Info.plist key for app display name.
<key>CFBundleDisplayName</key>
<string>[1]</string>The display name should be a user-friendly string with spaces if needed.
Fill both blanks to set the app icon in Xcode project.
flutter_icons: android: false ios: true image_path_ios: [1] remove_alpha_ios: [2]
The iOS icon path should point to the correct icon file and remove_alpha_ios is usually true to remove alpha channel for iOS icons per Apple guidelines.
Fill all three blanks to configure app signing in Xcode project file.
signing: team_id: [1] provisioning_profile: [2] code_sign_identity: [3]
Team ID is a unique code, provisioning profile matches the App Store profile for the app, and code sign identity is 'iPhone Distribution' for App Store submission.