File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -143,23 +143,25 @@ class _SignPageElevenState extends State<SignPageEleven> {
143143 ),
144144 Expanded (
145145 flex: 2 ,
146- child: DropdownButton <String >(
147- isDense: true ,
148- style: TextStyle (
149- fontSize: TEXT_NORMAL_SIZE ,
150- color: Colors .black,
146+ child: DropdownButtonHideUnderline (
147+ child: DropdownButton <String >(
148+ isDense: true ,
149+ style: TextStyle (
150+ fontSize: TEXT_NORMAL_SIZE ,
151+ color: Colors .black,
152+ ),
153+ isExpanded: true ,
154+ onChanged: changeDropDownLocationItem,
155+ items: _locations.map ((items) {
156+ return DropdownMenuItem <String >(
157+ value: items,
158+ child: Text (
159+ items,
160+ ),
161+ );
162+ }).toList (),
163+ value: currentLocation,
151164 ),
152- isExpanded: true ,
153- onChanged: changeDropDownLocationItem,
154- items: _locations.map ((items) {
155- return DropdownMenuItem <String >(
156- value: items,
157- child: Text (
158- items,
159- ),
160- );
161- }).toList (),
162- value: currentLocation,
163165 ),
164166 ),
165167 ],
You can’t perform that action at this time.
0 commit comments