From 7d42f1eb2cf274cd0cbb5b4cfbcb26c17b8f37f6 Mon Sep 17 00:00:00 2001 From: Vadim <44135514+vodemn@users.noreply.github.com> Date: Fri, 28 Mar 2025 09:34:32 +0100 Subject: [PATCH] unfocus textfield when tapped outside --- .../shared/text_field/widget_text_field.dart | 101 ++++++++++++------ 1 file changed, 71 insertions(+), 30 deletions(-) diff --git a/lib/screens/shared/text_field/widget_text_field.dart b/lib/screens/shared/text_field/widget_text_field.dart index 5ffae94..40eeaa0 100644 --- a/lib/screens/shared/text_field/widget_text_field.dart +++ b/lib/screens/shared/text_field/widget_text_field.dart @@ -1,33 +1,74 @@ import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; -class LightmeterTextField extends TextFormField { - LightmeterTextField({ - super.controller, - super.autofocus, - super.initialValue, - super.inputFormatters, - super.maxLength, - super.onChanged, - super.style, - super.textAlign, - Widget? leading, - String? hintText, - }) : super( - autovalidateMode: AutovalidateMode.onUserInteraction, - maxLines: 1, - decoration: InputDecoration( - counter: const SizedBox(), - contentPadding: EdgeInsets.zero, - errorStyle: const TextStyle(fontSize: 0), - icon: leading, - hintText: hintText, - ), - validator: (value) { - if (value == null || value.isEmpty) { - return ''; - } else { - return null; - } - }, - ); +class LightmeterTextField extends StatefulWidget { + const LightmeterTextField({ + this.autofocus = false, + this.controller, + this.hintText, + this.initialValue, + this.inputFormatters, + this.leading, + this.maxLength, + this.onChanged, + this.style, + this.textAlign = TextAlign.start, + }); + + final bool autofocus; + final TextEditingController? controller; + final String? hintText; + final String? initialValue; + final List? inputFormatters; + final Widget? leading; + final int? maxLength; + final void Function(String)? onChanged; + final TextStyle? style; + final TextAlign textAlign; + + @override + State createState() => _LightmeterTextFieldState(); +} + +class _LightmeterTextFieldState extends State { + late final focusNode = FocusNode(debugLabel: widget.hintText); + + @override + Widget build(BuildContext context) { + return TextFormField( + autofocus: widget.autofocus, + autovalidateMode: AutovalidateMode.onUserInteraction, + controller: widget.controller, + focusNode: focusNode, + initialValue: widget.initialValue, + inputFormatters: widget.inputFormatters, + maxLength: widget.maxLength, + onChanged: widget.onChanged, + style: widget.style, + textAlign: widget.textAlign, + decoration: InputDecoration( + counter: const SizedBox(), + contentPadding: EdgeInsets.zero, + errorStyle: const TextStyle(fontSize: 0), + icon: widget.leading, + hintText: widget.hintText, + ), + onTapOutside: (event) { + focusNode.unfocus(); + }, + validator: (value) { + if (value == null || value.isEmpty) { + return ''; + } else { + return null; + } + }, + ); + } + + @override + void dispose() { + focusNode.dispose(); + super.dispose(); + } }