@@ -6585,6 +6585,7 @@ void main() {
6585
6585
'TextInput.setStyle' ,
6586
6586
'TextInput.setEditingState' ,
6587
6587
'TextInput.show' ,
6588
+ 'TextInput.requestAutofill' ,
6588
6589
'TextInput.setEditingState' ,
6589
6590
'TextInput.show' ,
6590
6591
'TextInput.setCaretRect' ,
@@ -6648,6 +6649,7 @@ void main() {
6648
6649
'TextInput.setStyle' ,
6649
6650
'TextInput.setEditingState' ,
6650
6651
'TextInput.show' ,
6652
+ 'TextInput.requestAutofill' ,
6651
6653
'TextInput.setCaretRect' ,
6652
6654
];
6653
6655
expect (
@@ -6690,6 +6692,7 @@ void main() {
6690
6692
'TextInput.setStyle' ,
6691
6693
'TextInput.setEditingState' ,
6692
6694
'TextInput.show' ,
6695
+ 'TextInput.requestAutofill' ,
6693
6696
'TextInput.setEditingState' ,
6694
6697
'TextInput.show' ,
6695
6698
'TextInput.setCaretRect' ,
@@ -6740,6 +6743,7 @@ void main() {
6740
6743
'TextInput.setStyle' ,
6741
6744
'TextInput.setEditingState' ,
6742
6745
'TextInput.show' ,
6746
+ 'TextInput.requestAutofill' ,
6743
6747
'TextInput.setEditingState' ,
6744
6748
'TextInput.show' ,
6745
6749
'TextInput.setCaretRect' ,
@@ -8974,6 +8978,53 @@ void main() {
8974
8978
await tester.pump ();
8975
8979
expect (scrollController.offset.roundToDouble (), 0.0 );
8976
8980
});
8981
+
8982
+ testWidgets ('Autofill enabled by default' , (WidgetTester tester) async {
8983
+ final FocusNode focusNode = FocusNode ();
8984
+ await tester.pumpWidget (
8985
+ MaterialApp (
8986
+ home: EditableText (
8987
+ autofocus: true ,
8988
+ controller: TextEditingController (text: 'A' ),
8989
+ focusNode: focusNode,
8990
+ style: textStyle,
8991
+ cursorColor: Colors .blue,
8992
+ backgroundCursorColor: Colors .grey,
8993
+ cursorOpacityAnimates: true ,
8994
+ ),
8995
+ ),
8996
+ );
8997
+
8998
+ assert (focusNode.hasFocus);
8999
+ expect (
9000
+ tester.testTextInput.log,
9001
+ contains (matchesMethodCall ('TextInput.requestAutofill' )),
9002
+ );
9003
+ });
9004
+
9005
+ testWidgets ('Autofill can be disabled' , (WidgetTester tester) async {
9006
+ final FocusNode focusNode = FocusNode ();
9007
+ await tester.pumpWidget (
9008
+ MaterialApp (
9009
+ home: EditableText (
9010
+ autofocus: true ,
9011
+ controller: TextEditingController (text: 'A' ),
9012
+ focusNode: focusNode,
9013
+ style: textStyle,
9014
+ cursorColor: Colors .blue,
9015
+ backgroundCursorColor: Colors .grey,
9016
+ cursorOpacityAnimates: true ,
9017
+ autofillHints: null ,
9018
+ ),
9019
+ ),
9020
+ );
9021
+
9022
+ assert (focusNode.hasFocus);
9023
+ expect (
9024
+ tester.testTextInput.log,
9025
+ isNot (contains (matchesMethodCall ('TextInput.requestAutofill' ))),
9026
+ );
9027
+ });
8977
9028
}
8978
9029
8979
9030
class UnsettableController extends TextEditingController {
0 commit comments