File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
lib/screens/settings/components Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class CustomDropDown extends StatelessWidget {
26
26
trailing: MouseRegion (
27
27
cursor: SystemMouseCursors .click,
28
28
child: Container (
29
- width: Responsive .isDesktop (context) ? 300 : 100 ,
29
+ width: Responsive .isDesktop (context) ? 300 : 125 ,
30
30
color: kBgLightColor,
31
31
child: DropdownButton <String >(
32
32
underline: Container (),
@@ -36,10 +36,12 @@ class CustomDropDown extends StatelessWidget {
36
36
items: items.map ((String value) {
37
37
return DropdownMenuItem (
38
38
value: value,
39
- child: Padding (
40
- padding:
41
- const EdgeInsets .symmetric (vertical: 12 , horizontal: 8 ),
42
- child: Text (value),
39
+ child: Center (
40
+ child: Padding (
41
+ padding:
42
+ const EdgeInsets .symmetric (vertical: 12 , horizontal: 5 ),
43
+ child: Text (value),
44
+ ),
43
45
),
44
46
);
45
47
}).toList (),
You can’t perform that action at this time.
0 commit comments