cetorres / multiselect_formfield

A Flutter package that provides a multi select form field using alert dialog to select multiple items with checkboxes and showing as chips.
BSD 3-Clause "New" or "Revised" License
72 stars 59 forks source link

Color of border isn't changing ? #41

Open abraraltaf92 opened 3 years ago

abraraltaf92 commented 3 years ago

Widget dropDownMenu() => MultiSelectFormField( fillColor: Colors.white, border: OutlineInputBorder( borderRadius: BorderRadius.circular(15), borderSide: BorderSide(color: Colors.red), //### COLOR ISSUE ), dialogShapeBorder: RoundedRectangleBorder( borderRadius: BorderRadius.all(Radius.circular(12.0))), title: const Text("Types of Bonds"), dataSource: appleTypes, textField: 'display', valueField: 'value', okButtonLabel: 'OK', cancelButtonLabel: 'CANCEL', hintWidget: const Text('Please choose one or more type'), initialValue: _myActivities, onSaved: (value) { print('pressed'); }, chipBackGroundColor: Colors.amber[100], );

ws-fjq commented 2 years ago

Still an issue.