updateinput fields to cater for label values & Added a dropdown field widget
This commit is contained in:
69
Frontend/patient_manager/lib/components/myDropdownInput.dart
Normal file
69
Frontend/patient_manager/lib/components/myDropdownInput.dart
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/widgets.dart';
|
||||||
|
import 'package:patient_manager/objects/appUser.dart';
|
||||||
|
|
||||||
|
class MyDropdownField extends StatefulWidget {
|
||||||
|
final controller;
|
||||||
|
final AppUser signedInUser;
|
||||||
|
//final String hintText;
|
||||||
|
final List<DropdownMenuEntry<String>> dropdownOptions;
|
||||||
|
|
||||||
|
//final bool editable;
|
||||||
|
|
||||||
|
const MyDropdownField({
|
||||||
|
super.key,
|
||||||
|
required this.controller,
|
||||||
|
required this.signedInUser,
|
||||||
|
//required this.hintText,
|
||||||
|
required this.dropdownOptions,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<MyDropdownField> createState() => _MyDropdownFieldState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MyDropdownFieldState extends State<MyDropdownField> {
|
||||||
|
var dropbownItems = ["Dr.", "Assistant"];
|
||||||
|
// bool makeEditable() {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 25.0),
|
||||||
|
child: DropdownMenu(
|
||||||
|
controller: widget.controller,
|
||||||
|
expandedInsets: EdgeInsets.zero,
|
||||||
|
label: const Text("Title", style: TextStyle(color: Colors.blueAccent)),
|
||||||
|
menuStyle: const MenuStyle(
|
||||||
|
backgroundColor: WidgetStatePropertyAll(Colors.white),
|
||||||
|
side: WidgetStatePropertyAll(
|
||||||
|
BorderSide(color: Colors.blueAccent, width: 2.0),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
inputDecorationTheme: const InputDecorationTheme(
|
||||||
|
filled: true,
|
||||||
|
fillColor: Colors.white,
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Colors.blueAccent,
|
||||||
|
width: 2.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
outlineBorder: BorderSide(color: Colors.blue),
|
||||||
|
),
|
||||||
|
dropdownMenuEntries: widget.dropdownOptions,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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),
|
||||||
@@ -33,10 +33,13 @@ class MyMLTextField extends StatelessWidget {
|
|||||||
readOnly: makeEditable(),
|
readOnly: makeEditable(),
|
||||||
obscureText: false,
|
obscureText: false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
|
label: Text(hintText),
|
||||||
|
labelStyle: const TextStyle(color: Colors.blueAccent),
|
||||||
|
alignLabelWithHint: true,
|
||||||
fillColor: Colors.white,
|
fillColor: Colors.white,
|
||||||
filled: true,
|
filled: true,
|
||||||
hintText: hintText,
|
//hintText: hintText,
|
||||||
hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
//hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
||||||
enabledBorder: const OutlineInputBorder(
|
enabledBorder: const OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Colors.blueAccent,
|
color: Colors.blueAccent,
|
||||||
|
|||||||
@@ -39,8 +39,10 @@ class _MyPassFieldState extends State<MyPassField> {
|
|||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
fillColor: Colors.white,
|
fillColor: Colors.white,
|
||||||
filled: true,
|
filled: true,
|
||||||
hintText: widget.hintText,
|
label: Text(widget.hintText),
|
||||||
hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
labelStyle: const TextStyle(color: Colors.blueAccent),
|
||||||
|
//hintText: widget.hintText,
|
||||||
|
//hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
||||||
enabledBorder: const OutlineInputBorder(
|
enabledBorder: const OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Colors.blueAccent,
|
color: Colors.blueAccent,
|
||||||
|
|||||||
@@ -22,10 +22,15 @@ class MySearchField extends StatelessWidget {
|
|||||||
obscureText: false,
|
obscureText: false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
fillColor: Colors.white,
|
fillColor: Colors.white,
|
||||||
prefixIcon: const Icon(Icons.search),
|
prefixIcon: const Icon(
|
||||||
|
Icons.search,
|
||||||
|
color: Colors.blueAccent,
|
||||||
|
),
|
||||||
filled: true,
|
filled: true,
|
||||||
hintText: hintText,
|
label: Text(hintText),
|
||||||
hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
labelStyle: const TextStyle(color: Colors.blueAccent),
|
||||||
|
//hintText: hintText,
|
||||||
|
//hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
||||||
enabledBorder: const OutlineInputBorder(
|
enabledBorder: const OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Colors.blueAccent,
|
color: Colors.blueAccent,
|
||||||
|
|||||||
@@ -29,10 +29,12 @@ class MyTextField extends StatelessWidget {
|
|||||||
readOnly: makeEditable(),
|
readOnly: makeEditable(),
|
||||||
obscureText: false,
|
obscureText: false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
|
label: Text(hintText),
|
||||||
|
labelStyle: const TextStyle(color: Colors.blueAccent),
|
||||||
fillColor: Colors.white,
|
fillColor: Colors.white,
|
||||||
filled: true,
|
filled: true,
|
||||||
hintText: hintText,
|
//hintText: hintText,
|
||||||
hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
//hintStyle: TextStyle(color: Colors.blueGrey[400]),
|
||||||
enabledBorder: const OutlineInputBorder(
|
enabledBorder: const OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Colors.blueAccent,
|
color: Colors.blueAccent,
|
||||||
|
|||||||
Reference in New Issue
Block a user