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.
Flutter Autofill email and password like netflix
Asked Answered
See this comment on GitHub for some relevant information. –
Tigerish
To enable autofill for username and password,
Follow these three steps:
- Wrap your column of textfields and submit button with AutofillGroup().
- In your TextFields, set autofillHints: property as [AutofillHints.username] or [AutofillHints.password] as required.
- When user clicks on submit button call TextInput.finishAutofillContext();
For detail explanation, see here.
Do you have sample code for Jetpack Compose –
Yonkers
Maybe these links can help. Medium Article, stackoverflow answer –
Between
Thanks, even : bryanherbst.com/2021/04/13/compose-autofill It does not help me also –
Yonkers
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 You can pass autofillHints to textfield
TextField1(
autofillHints: [AutofillHints.email],
),
TextField2(
autofillHints: [AutofillHints.password],
),
Use TextEditingControl
to control the text.
hi, please could you edit your answer to explain in more detail? thank you in advance –
Hexapartite
© 2022 - 2025 — McMap. All rights reserved.