Compare commits

...

5 Commits

@ -118,6 +118,10 @@
<option name="groupName" value="Shell Script Hidden" />
<option name="key" value="shell_command exists" />
</TemplateKey>
<TemplateKey>
<option name="groupName" value="Kotlin" />
<option name="key" value="object" />
</TemplateKey>
</list>
</option>
</component>

@ -0,0 +1,13 @@
<templateSet group="Flutter generator snippets">
<template name="freezedAbstract" value="import 'package:freezed_annotation/freezed_annotation.dart';&#10;&#10;part '$fileName$.freezed.dart';&#10;&#10;@freezed&#10;abstract class $ClassName$ with _$$$ClassName$ {&#10; const factory $ClassName$({&#10; $Params$,&#10; }) = _$ClassName$;&#10; &#10; $code$&#10;}" description="Create feezed template" toReformat="false" toShortenFQNames="true">
<variable name="fileName" expression="fileNameWithoutExtension()" defaultValue="" alwaysStopAt="true" />
<variable name="ClassName" expression="dartClassName()" defaultValue="" alwaysStopAt="true" />
<variable name="Params" expression="dartSuggestVariableName()" defaultValue="" alwaysStopAt="true" />
<variable name="code" expression="" defaultValue="" alwaysStopAt="true" />
<context />
</template>
<template name="part" value="part '$fileName$.g.dart';" description="Declare part for .g.dart and .freezed.dart" toReformat="true" toShortenFQNames="true">
<variable name="fileName" expression="fileNameWithoutExtension()" defaultValue="" alwaysStopAt="true" />
<context />
</template>
</templateSet>

@ -1,6 +1,6 @@
<application>
<component name="Translation.Cache">
<option name="lastTrimTime" value="1760950038982" />
<option name="lastTrimTime" value="1761386988426" />
</component>
<component name="Translation.OpenAISettings">
<option name="OPEN_AI">
@ -22,6 +22,13 @@
<option name="translationDialogLocationY" value="567" />
<option name="translationDialogWidth" value="1381" />
<histories>
<item value="create permanent widget" />
<item value="Listens to changes on the value exposed by this provider. The listener will be called immediately after the provider completes building. As opposed to [Ref.listen], the listener will be called even if [updateShouldNotify] returns false, meaning that the previous and new value can potentially be identical." />
<item value="[fireImmediately] (false by default) can be optionally passed to tell Riverpod to immediately call the listener with the current value." />
<item value="- [weak] (false by default) can be optionally passed to have the listener not cause the provider to be initialized and kept alive. This enables listening to changes on a provider, without causing it to perform any work if it currently isn't used." />
<item value="{@template riverpod.listen} Listen to a provider and call [listener] whenever its value changes. Listeners will automatically be removed when the provider rebuilds (such as when a provider listened with [Ref.watch] changes). Returns an object that allows cancelling the subscription early. [fireImmediately] (false by default) can be optionally passed to tell Riverpod to immediately call the listener with the current value. [onError] can be specified to listen to uncaught errors in the provider.\ Note:\ [onError] will _not_ be triggered if the provider catches the exception and emit a valid value out of it. As such, if a [FutureProvider][StreamProvider] fail, [onError] will not be called. Instead the listener will receive an [AsyncError]. - [weak] (false by default) can be optionally passed to have the listener not cause the provider to be initialized and kept alive. This enables listening to changes on a provider, without causing it to perform any work if it currently isn't used. {@endtemplate}" />
<item value="Listens to changes on the value exposed by this provider. The listener will be called immediately after the provider completes building. As opposed to [Ref.listen], the listener will be called even if [updateShouldNotify] returns false, meaning that the previous and new value can potentially be identical. Returns a function which can be called to remove the listener." />
<item value="locate lost" />
<item value="latlngs" />
<item value="CHARGE POINT" />
<item value="STOP POINT" />
@ -65,13 +72,6 @@
<item value="The quote to be used for quoting strings. Defaults to [QuoteStyle.doubleQuote], because single quotes are often used as apostrophes." />
<item value="The indentation size. Must be greater or equal to `1`. Defaults to `2`." />
<item value="If `true`, it will force quoting of strings. If `false`, strings could be left unquoted if possible." />
<item value="The flag of whether needs long press to trigger dragging mode. true means it needs long press and false means no need." />
<item value="The method '_AMToolboxStoryWidgetForGCSState' isn't defined for the type 'AMToolboxStoryWidgetForGCS'. (Documentation) Try correcting the name to the name of an existing method, or defining a method named '_AMToolboxStoryWidgetForGCSState'" />
<item value="Writes a string to the file using the given [Encoding]. Returns a `Future&lt;RandomAccessFile&gt;` that completes with this random access file when the write completes." />
<item value="clipping" />
<item value="cubemaps" />
<item value="fail if major performance caveat" />
<item value="power preference" />
</histories>
<option name="languageScores">
<map>

Loading…
Cancel
Save