Flutter Autofill email and password like netflix
Asked Answered
S

3

13

Can anyone please show me how can i implement password manager like netflix in flutter, Like if user clicking on email textfield then show stored email and password like netflix does. Thank You.

Speculate answered 18/1, 2022 at 3:33 Comment(1)
See this comment on GitHub for some relevant information.Tigerish
B
8

To enable autofill for username and password,

Follow these three steps:

  1. Wrap your column of textfields and submit button with AutofillGroup(). enter image description here
  2. In your TextFields, set autofillHints: property as [AutofillHints.username] or [AutofillHints.password] as required. enter image description here
  3. When user clicks on submit button call TextInput.finishAutofillContext(); enter image description here

For detail explanation, see here.

Between answered 6/10, 2023 at 10:25 Comment(4)
Do you have sample code for Jetpack ComposeYonkers
Maybe these links can help. Medium Article, stackoverflow answerBetween
Thanks, even : bryanherbst.com/2021/04/13/compose-autofill It does not help me alsoYonkers
Does it allow to update new password into Google autofill framework after login success from android app? I does not have many info. about this.\Yonkers
D
0

You can pass autofillHints to textfield

 TextField1(
       autofillHints: [AutofillHints.email],
 ),
 TextField2(
       autofillHints: [AutofillHints.password],
 ),
Dostie answered 11/9, 2023 at 5:18 Comment(0)
S
0

Use TextEditingControl to control the text.

Sestos answered 20/9, 2023 at 22:56 Comment(1)
hi, please could you edit your answer to explain in more detail? thank you in advanceHexapartite

© 2022 - 2025 — McMap. All rights reserved.