Component - iOS build configuration
This component represents the setup screen for configuring an iOS build in a Flutter app. It allows the user to select build options like build mode and target device, then start the build process.
This component represents the setup screen for configuring an iOS build in a Flutter app. It allows the user to select build options like build mode and target device, then start the build process.
Scaffold
├── AppBar
│ └── Text ("iOS Build Configuration")
└── Padding
└── Column
├── Text ("Select Build Mode")
├── DropdownButton (buildMode)
├── SizedBox (height: 16)
├── Text ("Select Target Device")
├── DropdownButton (targetDevice)
├── SizedBox (height: 32)
└── ElevatedButton ("Start Build")