Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 3a9a09a

Browse files
committed
updating README
1 parent 4cb91b1 commit 3a9a09a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ class MyApp extends StatelessWidget {
6767
alignment: Alignment.center,
6868
child: EasyAutocomplete(
6969
suggestions: ['Afeganistan', 'Albania', 'Algeria', 'Australia', 'Brazil', 'German', 'Madagascar', 'Mozambique', 'Portugal', 'Zambia'],
70-
onChanged: (value) => print(value)
70+
onChanged: (value) => print('onChanged value: $value'),
71+
onSubmitted: (value) => print('onSubmitted value: $value')
7172
)
7273
)
7374
)

0 commit comments

Comments
 (0)