mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-31 06:55:59 +00:00
107 lines
3.4 KiB
Dart
107 lines
3.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
class BaseTextFormField extends StatelessWidget {
|
|
BaseTextFormField(
|
|
{this.controller,
|
|
this.keyboardType = TextInputType.text,
|
|
this.textInputAction = TextInputAction.done,
|
|
this.textAlign = TextAlign.start,
|
|
this.autovalidateMode,
|
|
this.hintText = '',
|
|
this.maxLines = 1,
|
|
this.inputFormatters,
|
|
this.textColor,
|
|
this.hintColor,
|
|
this.borderColor,
|
|
this.prefix,
|
|
this.prefixIcon,
|
|
this.suffix,
|
|
this.suffixIcon,
|
|
this.enabled = true,
|
|
this.readOnly = false,
|
|
this.enableInteractiveSelection = true,
|
|
this.validator,
|
|
this.textStyle,
|
|
this.placeholderTextStyle,
|
|
this.maxLength,
|
|
this.focusNode,
|
|
this.initialValue,
|
|
this.borderWidth = 1.0});
|
|
|
|
final TextEditingController? controller;
|
|
final TextInputType? keyboardType;
|
|
final TextInputAction? textInputAction;
|
|
final TextAlign textAlign;
|
|
final AutovalidateMode? autovalidateMode;
|
|
final String? hintText;
|
|
final int? maxLines;
|
|
final List<TextInputFormatter>? inputFormatters;
|
|
final Color? textColor;
|
|
final Color? hintColor;
|
|
final Color? borderColor;
|
|
final Widget? prefix;
|
|
final Widget? prefixIcon;
|
|
final Widget? suffix;
|
|
final Widget? suffixIcon;
|
|
final bool? enabled;
|
|
final FormFieldValidator<String>? validator;
|
|
final TextStyle? placeholderTextStyle;
|
|
final TextStyle? textStyle;
|
|
final int? maxLength;
|
|
final FocusNode? focusNode;
|
|
final bool readOnly;
|
|
final bool? enableInteractiveSelection;
|
|
final String? initialValue;
|
|
final double borderWidth;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextFormField(
|
|
enableInteractiveSelection: enableInteractiveSelection,
|
|
readOnly: readOnly,
|
|
initialValue: initialValue,
|
|
focusNode: focusNode,
|
|
controller: controller,
|
|
keyboardType: keyboardType,
|
|
textInputAction: textInputAction,
|
|
textAlign: textAlign,
|
|
autovalidateMode: autovalidateMode,
|
|
maxLines: maxLines,
|
|
inputFormatters: inputFormatters,
|
|
enabled: enabled,
|
|
maxLength: maxLength,
|
|
style: textStyle ??
|
|
TextStyle(
|
|
fontSize: 16.0,
|
|
color:
|
|
textColor ?? Theme.of(context).primaryTextTheme!.headline6!.color!),
|
|
decoration: InputDecoration(
|
|
prefix: prefix,
|
|
prefixIcon: prefixIcon,
|
|
suffix: suffix,
|
|
suffixIcon: suffixIcon,
|
|
hintStyle: placeholderTextStyle ??
|
|
TextStyle(
|
|
color: hintColor ?? Theme.of(context).hintColor,
|
|
fontSize: 16),
|
|
hintText: hintText,
|
|
focusedBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: borderColor ??
|
|
Theme.of(context).primaryTextTheme!.headline6!.backgroundColor!,
|
|
width: borderWidth)),
|
|
disabledBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: borderColor ??
|
|
Theme.of(context).primaryTextTheme!.headline6!.backgroundColor!,
|
|
width: borderWidth)),
|
|
enabledBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: borderColor ??
|
|
Theme.of(context).primaryTextTheme!.headline6!.backgroundColor!,
|
|
width: borderWidth))),
|
|
validator: validator,
|
|
);
|
|
}
|
|
}
|