You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: resources/META-INF/plugin.xml
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
<idea-plugin>
3
3
<id>com.herbert.george.flutter-snippets</id>
4
4
<name>Flutter Snippets</name>
5
-
<version>0.1.4</version>
5
+
<version>0.1.5</version>
6
6
<vendor>George Herbert</vendor>
7
7
<description><![CDATA[
8
8
<p>Provides live templates for Flutter to save time writing boilerplate.</p>
@@ -19,6 +19,14 @@ The following commands are supported:
19
19
<tr>
20
20
<td>animBldr</td>
21
21
<td>Creates an AnimationBuilder</td>
22
+
</tr>
23
+
<tr>
24
+
<td>customClipper</td>
25
+
<td>Creates a CustomClipper</td>
26
+
</tr>
27
+
<tr>
28
+
<td>customPainter</td>
29
+
<td>Creates a CustomPainter</td>
22
30
</tr>
23
31
<tr>
24
32
<td>customScrollV</td>
@@ -77,7 +85,7 @@ The following commands are supported:
77
85
<td>Creates a StatefulBuilder</td>
78
86
</tr>
79
87
</table>]]></description>
80
-
<change-notes>Add support for stfulBldr (StatefulBuilder), orienatatBldr (OrientationBuilder) and import shortcuts for Material (importMat) and Cupertino (importCup)</change-notes>
88
+
<change-notes>Add support for customClipper and customPainter</change-notes>
Copy file name to clipboardExpand all lines: resources/liveTemplates/Flutter.xml
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -125,16 +125,31 @@
125
125
<optionname="DART_STATEMENT"value="true" />
126
126
</context>
127
127
</template>
128
-
<!--Add Material Package Import-->
128
+
<!-- Material Package Import-->
129
129
<templatename="importMat"value="import 'package:flutter/material.dart';"description="Import Material Package"toReformat="false"toShortenFQNames="true">
0 commit comments