From e37b427a2a8ca1edf87f2d8211d12020d69df59d Mon Sep 17 00:00:00 2001 From: callumsteele4 Date: Sat, 29 Aug 2020 09:18:06 +1000 Subject: [PATCH] Fix Android autofill username hint docs (#64776) --- packages/flutter/lib/src/services/autofill.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/services/autofill.dart b/packages/flutter/lib/src/services/autofill.dart index 455083c45b5..8364eda2c63 100644 --- a/packages/flutter/lib/src/services/autofill.dart +++ b/packages/flutter/lib/src/services/autofill.dart @@ -613,7 +613,7 @@ class AutofillHints { /// /// This hint will be translated to the below values on different platforms: /// - /// * Android: [AUTOFILL_HINT_NEW_USERNAME](https://developer.android.com/reference/androidx/autofill/HintConstants#AUTOFILL_HINT_NEW_USERNAME). + /// * Android: [AUTOFILL_HINT_USERNAME](https://developer.android.com/reference/androidx/autofill/HintConstants#AUTOFILL_HINT_USERNAME). /// * iOS: [username](https://developer.apple.com/documentation/uikit/uitextcontenttype). /// * web: ["username"](https://www.w3.org/TR/html52/sec-forms.html#autofilling-form-controls-the-autocomplete-attribute). /// * Otherwise, the hint string will be used as-is.