diff --git a/.gitignore b/.gitignore index 3375760..3bb9df7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules *.vsix -vsc-extension-quickstart.md \ No newline at end of file +vsc-extension-quickstart.md +package-lock.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 839551a..c40c5e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/README.md b/README.md index 8de7664..f3aa93a 100644 --- a/README.md +++ b/README.md @@ -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 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.
@@ -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` diff --git a/package.json b/package.json index 0066e3f..1e48c22 100644 --- a/package.json +++ b/package.json @@ -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", @@ -24,7 +24,7 @@ }, "bugs": { "url": "https://github.com/Neevash/awesome-flutter-snippets/issues", - "email": "ramdialnash@outlook.com" + "email": "mail@neevash.dev" }, "categories": [ "Snippets" @@ -37,4 +37,4 @@ } ] } -} \ No newline at end of file +} diff --git a/snippets/snippets.json b/snippets/snippets.json index 11bddbd..a55ea68 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -445,7 +445,7 @@ "description": "Create a test function" }, "Test Widgets": { - "prefix": "f-testWidgets", + "prefix": "widgetTest", "body": [ "testWidgets(", " \"${1:test description}\",",