remove old dropdown
This commit is contained in:
@@ -1,219 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import '../../main.dart';
|
|
||||||
|
|
||||||
class MIHDropdownField extends StatefulWidget {
|
|
||||||
final TextEditingController controller;
|
|
||||||
final String hintText;
|
|
||||||
final bool required;
|
|
||||||
final List<String> dropdownOptions;
|
|
||||||
// final void Function(String?)? onSelect;
|
|
||||||
final bool editable;
|
|
||||||
final bool enableSearch;
|
|
||||||
|
|
||||||
const MIHDropdownField({
|
|
||||||
super.key,
|
|
||||||
required this.controller,
|
|
||||||
required this.hintText,
|
|
||||||
required this.dropdownOptions,
|
|
||||||
required this.required,
|
|
||||||
required this.editable,
|
|
||||||
required this.enableSearch,
|
|
||||||
// this.onSelect,
|
|
||||||
});
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<MIHDropdownField> createState() => _MIHDropdownFieldState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _MIHDropdownFieldState extends State<MIHDropdownField> {
|
|
||||||
//var dropbownItems = ["Dr.", "Assistant"];
|
|
||||||
bool startup = true;
|
|
||||||
final FocusNode _focus = FocusNode();
|
|
||||||
late List<DropdownMenuEntry<String>> menu;
|
|
||||||
|
|
||||||
Widget setRequiredText() {
|
|
||||||
if (widget.required) {
|
|
||||||
return Row(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
"*",
|
|
||||||
style: TextStyle(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.errorColor()),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
width: 8.0,
|
|
||||||
),
|
|
||||||
Text(widget.hintText,
|
|
||||||
style: TextStyle(
|
|
||||||
color:
|
|
||||||
MzanziInnovationHub.of(context)!.theme.secondaryColor())),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
return Text(widget.hintText,
|
|
||||||
style: TextStyle(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void _onFocusChange() {
|
|
||||||
setState(() {
|
|
||||||
startup = false;
|
|
||||||
});
|
|
||||||
// widget.onSelect;
|
|
||||||
}
|
|
||||||
|
|
||||||
String? get _errorText {
|
|
||||||
final text = widget.controller.text;
|
|
||||||
if (startup) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (!widget.required) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (text.isEmpty) {
|
|
||||||
return "${widget.hintText} is required";
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
List<DropdownMenuEntry<String>> buidMenueOptions(List<String> options) {
|
|
||||||
List<DropdownMenuEntry<String>> menueList = [];
|
|
||||||
for (final i in options) {
|
|
||||||
menueList.add(DropdownMenuEntry(
|
|
||||||
value: i,
|
|
||||||
label: i,
|
|
||||||
style: ButtonStyle(
|
|
||||||
foregroundColor: WidgetStatePropertyAll(
|
|
||||||
MzanziInnovationHub.of(context)!.theme.secondaryColor()))));
|
|
||||||
}
|
|
||||||
return menueList;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
_focus.dispose();
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
menu = buidMenueOptions(widget.dropdownOptions);
|
|
||||||
_focus.addListener(_onFocusChange);
|
|
||||||
_focus.canRequestFocus = widget.enableSearch;
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
// bool makeEditable() {
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return DropdownMenu(
|
|
||||||
enableSearch: widget.enableSearch,
|
|
||||||
enableFilter: widget.enableSearch,
|
|
||||||
// requestFocusOnTap: true,
|
|
||||||
initialSelection: widget.controller.text,
|
|
||||||
enabled: widget.editable,
|
|
||||||
trailingIcon: Icon(
|
|
||||||
Icons.arrow_drop_down,
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
),
|
|
||||||
selectedTrailingIcon: Icon(
|
|
||||||
Icons.arrow_drop_up,
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
),
|
|
||||||
textStyle: TextStyle(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor()),
|
|
||||||
menuHeight: 300,
|
|
||||||
controller: widget.controller,
|
|
||||||
expandedInsets: EdgeInsets.zero,
|
|
||||||
label: setRequiredText(),
|
|
||||||
errorText: _errorText,
|
|
||||||
|
|
||||||
focusNode: _focus,
|
|
||||||
onSelected: (selected) {
|
|
||||||
_onFocusChange();
|
|
||||||
// if (widget.editable == false) {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
},
|
|
||||||
leadingIcon: IconButton(
|
|
||||||
onPressed: () {
|
|
||||||
setState(() {
|
|
||||||
startup = false;
|
|
||||||
});
|
|
||||||
widget.controller.clear();
|
|
||||||
},
|
|
||||||
icon: Icon(
|
|
||||||
Icons.delete_outline_rounded,
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
menuStyle: MenuStyle(
|
|
||||||
backgroundColor: WidgetStatePropertyAll(
|
|
||||||
MzanziInnovationHub.of(context)!.theme.primaryColor()),
|
|
||||||
side: WidgetStatePropertyAll(
|
|
||||||
BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
width: 2.0),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
|
|
||||||
inputDecorationTheme: InputDecorationTheme(
|
|
||||||
filled: true,
|
|
||||||
errorStyle: TextStyle(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
fontWeight: FontWeight.bold),
|
|
||||||
fillColor: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
|
||||||
focusedBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
focusedErrorBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
errorBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
enabledBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
disabledBorder: OutlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor(),
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
outlineBorder: BorderSide(
|
|
||||||
color: MzanziInnovationHub.of(context)!.theme.secondaryColor()),
|
|
||||||
),
|
|
||||||
dropdownMenuEntries: menu,
|
|
||||||
// const <DropdownMenuEntry<String>>[
|
|
||||||
// DropdownMenuEntry(value: "Dr.", label: "Dr."),
|
|
||||||
// DropdownMenuEntry(value: "Assistant", label: "Assistant"),
|
|
||||||
// ],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// filled: true,
|
|
||||||
// hintText: hintText,
|
|
||||||
// hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
|
||||||
// enabledBorder: const OutlineInputBorder(
|
|
||||||
// borderSide: BorderSide(
|
|
||||||
// color: Colors.blueAccent,
|
|
||||||
// width: 2.0,
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// focusedBorder: const OutlineInputBorder(
|
|
||||||
// borderSide: BorderSide(color: Colors.blue),
|
|
||||||
Reference in New Issue
Block a user