|
@@ -34,11 +34,16 @@ class _BuildView extends State<BuildView> {
|
|
|
const SizedBox(width: 12),
|
|
|
Text("Platform:"),
|
|
|
const SizedBox(width: 8),
|
|
|
- SizedBox(
|
|
|
+ Container(
|
|
|
width: 136,
|
|
|
height: 40,
|
|
|
child: Expanded(
|
|
|
child: DropdownButtonFormField<Platform>(
|
|
|
+ style: TextStyle(fontSize: 15, color: Colors.black),
|
|
|
+ decoration: const InputDecoration(
|
|
|
+ contentPadding: EdgeInsets.only(left: 5, right: 5),
|
|
|
+ border: OutlineInputBorder(gapPadding: 1),
|
|
|
+ labelText: ''),
|
|
|
onChanged: (item) {
|
|
|
setState(() => this.selectedPlatform = item);
|
|
|
},
|