Component - Android build configuration
This UI component shows the Android build configuration screen in a Flutter app. It lets developers set build options like build type and version code before building the app.
This UI component shows the Android build configuration screen in a Flutter app. It lets developers set build options like build type and version code before building the app.
Scaffold
├── AppBar
│ └── Text("Android Build Config")
└── Padding
└── Column
├── Text("Build Type")
├── DropdownButton<String>
├── SizedBox(height: 16)
├── Text("Version Code")
├── TextField
├── SizedBox(height: 24)
└── ElevatedButton(child: Text("Build"))