From 0e747710abac955a5c4c17c26fcf0191d5f9ef74 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 14:33:24 +0100 Subject: [PATCH] Edited comment --- lib/presentation/widgets/text_input/text_input_field.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/widgets/text_input/text_input_field.dart b/lib/presentation/widgets/text_input/text_input_field.dart index 37f9ce4..b88eb21 100644 --- a/lib/presentation/widgets/text_input/text_input_field.dart +++ b/lib/presentation/widgets/text_input/text_input_field.dart @@ -6,7 +6,7 @@ class TextInputField extends StatelessWidget { /// - [controller]: The controller for the text input field. /// - [onChanged]: The callback invoked when the text in the field changes. /// - [hintText]: The hint text displayed in the text input field when it is empty - /// - [maxLength]: The maximum length of the input text. + /// - [maxLength]: Optional parameter for maximum length of the input text. const TextInputField({ super.key, required this.controller, @@ -24,7 +24,7 @@ class TextInputField extends StatelessWidget { /// The hint text displayed in the text input field when it is empty. final String hintText; - /// The maximum length of the input text. + /// Optional parameter for maximum length of the input text. final int? maxLength; @override