Skip to content

Version 2.0.4 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.vsix
vsc-extension-quickstart.md
vsc-extension-quickstart.md
package-lock.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.

## [Changes]

### 2.0.4
- Add Flutter test import (Thank you @arthurdenner https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/16)
- Support for unit and widget test functions (Thank you @TNorbury https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/20)
- Added support for Listview.Separated (Thank you @timilehinjegede https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/26)
- Fixed inheritedW (Thank you @ianwith https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/22)

### 2.0.3
- Support for `BehaviorSubject` (Thanks @sinadarvi https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/7)
- Support for `TweenAnimationBuilder`
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Awesome Flutter Snippets is a collection of commonly used Flutter classes and me
| `tweenAnimationBuilder` | Tween Animation Builder | Widget builder that animates a property of a Widget to a target value whenever the target value changes.
| `valueListenableBuilder` | Value Listenable Builder | Given a ValueListenable<T> and a builder which builds widgets from concrete values of T, this class will automatically register itself as a listener of the ValueListenable and call the builder with updated values when the value changes.
| `f-test` | Test | Create a test function.
| `f-testWidgets` | Test Widgets | Create a testWidgets function.
| `widgetTest` | Test Widgets | Create a testWidgets function.

<br>

Expand All @@ -59,6 +59,12 @@ At this time, there are no known issues. If you discover a bug or would like to

## Release Notes

### 2.0.4
- Add Flutter test import (Thank you @arthurdenner https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/16)
- Support for unit and widget test functions (Thank you @TNorbury https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/20)
- Added support for Listview.Separated (Thank you @timilehinjegede https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/26)
- Fixed inheritedW (Thank you @ianwith https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/22)

### 2.0.3
- Support for `BehaviorSubject` (Thanks @sinadarvi https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/7)
- Support for `TweenAnimationBuilder`
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "awesome-flutter-snippets",
"displayName": "Awesome Flutter Snippets",
"description": "Awesome Flutter Snippets is a collection snippets and shortcuts for commonly used Flutter functions and classes",
"version": "2.0.3",
"version": "2.0.4",
"icon": "logo.png",
"publisher": "Nash",
"engines": {
"vscode": "^1.39.0"
"vscode": "^1.46.0"
},
"keywords": [
"Flutter",
Expand All @@ -24,7 +24,7 @@
},
"bugs": {
"url": "https://github.com/Neevash/awesome-flutter-snippets/issues",
"email": "[email protected]"
"email": "[email protected]"
},
"categories": [
"Snippets"
Expand All @@ -37,4 +37,4 @@
}
]
}
}
}
2 changes: 1 addition & 1 deletion snippets/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
"description": "Create a test function"
},
"Test Widgets": {
"prefix": "f-testWidgets",
"prefix": "widgetTest",
"body": [
"testWidgets(",
" \"${1:test description}\",",
Expand Down