Skip to content

Commit

Permalink
Update dependencies (#406)
Browse files Browse the repository at this point in the history
* Update dependencies

* Add lock files

* Migrate code to new analyzer API
  • Loading branch information
vitusortner authored Oct 14, 2020
1 parent 7888578 commit 71beb98
Show file tree
Hide file tree
Showing 19 changed files with 1,585 additions and 38 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Miscellaneous
floor/test/integration/**/*.g.dart
*.class
*.lock
*.log
*.pyc
*.swp
Expand Down Expand Up @@ -29,7 +28,6 @@ floor/test/integration/**/*.g.dart
.pub-cache/
.pub/
build/
pubspec.lock
.flutter-plugins-dependencies

# Android related
Expand Down
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ class TasksTextField extends StatelessWidget {
Expanded(
child: TextField(
controller: _textEditingController,
decoration: InputDecoration(
decoration: const InputDecoration(
fillColor: Colors.transparent,
filled: true,
contentPadding: const EdgeInsets.all(16),
contentPadding: EdgeInsets.all(16),
border: InputBorder.none,
hintText: 'Type task here',
),
Expand Down
Loading

0 comments on commit 71beb98

Please sign in to comment.