From e8a78cd8183eaec09119b7f1972583c70828a1dd Mon Sep 17 00:00:00 2001 From: Aman Raj Singh Mourya Date: Mon, 12 Aug 2024 14:07:08 +0530 Subject: [PATCH] [mob][photos] Auto-fill password for Applock --- mobile/lib/ui/components/text_input_widget.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mobile/lib/ui/components/text_input_widget.dart b/mobile/lib/ui/components/text_input_widget.dart index 0d4fd7aeca..84ef249b03 100644 --- a/mobile/lib/ui/components/text_input_widget.dart +++ b/mobile/lib/ui/components/text_input_widget.dart @@ -156,6 +156,8 @@ class _TextInputWidgetState extends State { keyboardType: widget.textInputType, textCapitalization: widget.textCapitalization!, autofocus: widget.autoFocus ?? false, + autofillHints: + widget.isPasswordInput ? [AutofillHints.password] : [], controller: _textController, focusNode: widget.focusNode, inputFormatters: widget.textInputFormatter ??