|
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
import 'app_texts_widget.dart';
|
|
|
|
|
@ -19,6 +20,7 @@ class AppTextFieldCustom extends StatefulWidget {
|
|
|
|
|
final int maxLines;
|
|
|
|
|
final List<TextInputFormatter> inputFormatters;
|
|
|
|
|
final Function(String) onChanged;
|
|
|
|
|
final String validationError;
|
|
|
|
|
|
|
|
|
|
AppTextFieldCustom({
|
|
|
|
|
this.height = 0,
|
|
|
|
|
@ -36,6 +38,7 @@ class AppTextFieldCustom extends StatefulWidget {
|
|
|
|
|
this.maxLines = 1,
|
|
|
|
|
this.inputFormatters,
|
|
|
|
|
this.onChanged,
|
|
|
|
|
this.validationError,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
@ -45,83 +48,115 @@ class AppTextFieldCustom extends StatefulWidget {
|
|
|
|
|
class _AppTextFieldCustomState extends State<AppTextFieldCustom> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
|
height: widget.height != 0 ? widget.height + 8 : null,
|
|
|
|
|
decoration: widget.hasBorder
|
|
|
|
|
? containerBorderDecoration(Color(0Xffffffff), Color(0xFFEFEFEF))
|
|
|
|
|
: null,
|
|
|
|
|
padding: EdgeInsets.only(top: 4.0, bottom: 4.0, left: 8.0, right: 8.0),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: widget.onClick ?? null,
|
|
|
|
|
child: Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
padding: widget.dropDownText == null ? EdgeInsets.symmetric(vertical: 0): EdgeInsets.symmetric(vertical: 8),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
if ((widget.controller != null &&
|
|
|
|
|
widget.controller.text != "") ||
|
|
|
|
|
widget.dropDownText != null)
|
|
|
|
|
AppText(
|
|
|
|
|
widget.hintText,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.4,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
widget.dropDownText == null
|
|
|
|
|
? TextField(
|
|
|
|
|
textAlign: TextAlign.left,
|
|
|
|
|
decoration: textFieldSelectorDecoration(
|
|
|
|
|
widget.hintText, null, true),
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.7,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: Colors.grey.shade800,
|
|
|
|
|
),
|
|
|
|
|
controller: widget.controller,
|
|
|
|
|
keyboardType: widget.inputType,
|
|
|
|
|
enabled: widget.enabled,
|
|
|
|
|
minLines: widget.minLines,
|
|
|
|
|
maxLines: widget.maxLines,
|
|
|
|
|
inputFormatters: widget.inputFormatters != null
|
|
|
|
|
? widget.inputFormatters
|
|
|
|
|
: [],
|
|
|
|
|
onChanged: (value) {
|
|
|
|
|
if (widget.onChanged != null){
|
|
|
|
|
widget.onChanged(value);
|
|
|
|
|
setState(() {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
: AppText(
|
|
|
|
|
widget.dropDownText,
|
|
|
|
|
return Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
height: widget.height != 0 ? widget.height + 8 : null,
|
|
|
|
|
decoration: widget.hasBorder
|
|
|
|
|
? containerBorderDecoration(
|
|
|
|
|
Color(0Xffffffff),
|
|
|
|
|
widget.validationError == null
|
|
|
|
|
? Color(0xFFEFEFEF)
|
|
|
|
|
: Colors.red.shade700)
|
|
|
|
|
: null,
|
|
|
|
|
padding:
|
|
|
|
|
EdgeInsets.only(top: 4.0, bottom: 4.0, left: 8.0, right: 8.0),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: widget.onClick ?? null,
|
|
|
|
|
child: Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
padding: widget.dropDownText == null
|
|
|
|
|
? EdgeInsets.symmetric(vertical: 0)
|
|
|
|
|
: EdgeInsets.symmetric(vertical: 8),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
if ((widget.controller != null &&
|
|
|
|
|
widget.controller.text != "") ||
|
|
|
|
|
widget.dropDownText != null)
|
|
|
|
|
AppText(
|
|
|
|
|
widget.hintText,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: Colors.grey.shade800,
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.7,
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.4,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
widget.dropDownText == null
|
|
|
|
|
? TextField(
|
|
|
|
|
textAlign: TextAlign.left,
|
|
|
|
|
decoration: textFieldSelectorDecoration(
|
|
|
|
|
widget.hintText, null, true),
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.7,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: Colors.grey.shade800,
|
|
|
|
|
),
|
|
|
|
|
controller: widget.controller,
|
|
|
|
|
keyboardType: widget.inputType,
|
|
|
|
|
enabled: widget.enabled,
|
|
|
|
|
minLines: widget.minLines,
|
|
|
|
|
maxLines: widget.maxLines,
|
|
|
|
|
inputFormatters: widget.inputFormatters != null
|
|
|
|
|
? widget.inputFormatters
|
|
|
|
|
: [],
|
|
|
|
|
onChanged: (value) {
|
|
|
|
|
if (widget.onChanged != null) {
|
|
|
|
|
widget.onChanged(value);
|
|
|
|
|
setState(() {});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
: AppText(
|
|
|
|
|
widget.dropDownText,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: Colors.grey.shade800,
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.7,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
widget.isDropDown
|
|
|
|
|
? widget.suffixIcon != null
|
|
|
|
|
? widget.suffixIcon
|
|
|
|
|
: Icon(
|
|
|
|
|
Icons.keyboard_arrow_down,
|
|
|
|
|
color: widget.dropDownColor != null
|
|
|
|
|
? widget.dropDownColor
|
|
|
|
|
: Colors.black,
|
|
|
|
|
)
|
|
|
|
|
: Container(),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
widget.isDropDown
|
|
|
|
|
? widget.suffixIcon != null
|
|
|
|
|
? widget.suffixIcon
|
|
|
|
|
: Icon(
|
|
|
|
|
Icons.keyboard_arrow_down,
|
|
|
|
|
color: widget.dropDownColor != null
|
|
|
|
|
? widget.dropDownColor
|
|
|
|
|
: Colors.black,
|
|
|
|
|
)
|
|
|
|
|
: Container(),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (widget.validationError != null)
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.only(top: 8, right: 8, left: 8, bottom: 8),
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Icon(
|
|
|
|
|
DoctorApp.warning,
|
|
|
|
|
size: 20,
|
|
|
|
|
color: Colors.red.shade700,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 12,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
widget.validationError,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.7,
|
|
|
|
|
color: Colors.red.shade700,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|