Skip to content

Commit c78769b

Browse files
committed
Finished docs
1 parent 3373a0f commit c78769b

File tree

4 files changed

+64
-79
lines changed

4 files changed

+64
-79
lines changed

Diff for: .idea/workspace.xml

+56-76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: example/lib/main.dart

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ class _MyHomePageState extends State<MyHomePage> {
2929
@override
3030
Widget build(BuildContext context) {
3131
var textField = new AutoCompleteTextField<String>(
32+
decoration: new InputDecoration(
33+
hintText: "Search Item",
34+
border: new OutlineInputBorder(
35+
gapPadding: 0.0, borderRadius: new BorderRadius.circular(16.0)),
36+
suffixIcon: new Icon(Icons.search)),
3237
key: key,
3338
suggestions: [
3439
"Apple",

Diff for: example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
path: ".."
2929
relative: true
3030
source: path
31-
version: "1.0.0"
31+
version: "1.2.0"
3232
boolean_selector:
3333
dependency: transitive
3434
description:

Diff for: pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: autocomplete_textfield
2-
description: A simple and versatile autocomplete text field for flutter
3-
version: 1.0.0
2+
description: A simple and versatile autocomplete text field for flutter, supporting multiple datatypes.
3+
version: 1.2.0
44
author: Felix McCuaig <[email protected]>
55
homepage: https://github.com/felixlucien/flutter-autocomplete-textfield
66

0 commit comments

Comments
 (0)