Compare commits
2 Commits
a0d3e43b39
...
9d1ef3507d
| Author | SHA1 | Date | |
|---|---|---|---|
| 9d1ef3507d | |||
| 5a2a7d981a |
@@ -57,9 +57,6 @@
|
|||||||
<XML>
|
<XML>
|
||||||
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
||||||
</XML>
|
</XML>
|
||||||
<codeStyleSettings language="Dart">
|
|
||||||
<option name="RIGHT_MARGIN" value="120" />
|
|
||||||
</codeStyleSettings>
|
|
||||||
<codeStyleSettings language="JAVA">
|
<codeStyleSettings language="JAVA">
|
||||||
<option name="KEEP_FIRST_COLUMN_COMMENT" value="false" />
|
<option name="KEEP_FIRST_COLUMN_COMMENT" value="false" />
|
||||||
<option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" />
|
<option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" />
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
<mapping ext="bak" type="PLAIN_TEXT" />
|
<mapping ext="bak" type="PLAIN_TEXT" />
|
||||||
<mapping ext="py" type="PLAIN_TEXT" />
|
<mapping ext="py" type="PLAIN_TEXT" />
|
||||||
<mapping ext="mk" type="PLAIN_TEXT" />
|
<mapping ext="mk" type="PLAIN_TEXT" />
|
||||||
|
<removed_mapping pattern=".analysis_options" type="YAML" />
|
||||||
<removed_mapping ext="apk" approved="true" type="ARCHIVE" />
|
<removed_mapping ext="apk" approved="true" type="ARCHIVE" />
|
||||||
<removed_mapping ext="ignore" approved="true" type="IgnoreLang file" />
|
<removed_mapping ext="ignore" approved="true" type="IgnoreLang file" />
|
||||||
<removed_mapping ext="psd" approved="true" type="Image" />
|
<removed_mapping ext="psd" approved="true" type="Image" />
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
<inspections profile_name="Default" version="1.0">
|
<profile version="1.0">
|
||||||
<option name="myName" value="Default" />
|
<option name="myName" value="Default" />
|
||||||
</inspections>
|
</profile>
|
||||||
@@ -5,6 +5,7 @@
|
|||||||
<option name="newTranslationDialogY" value="624" />
|
<option name="newTranslationDialogY" value="624" />
|
||||||
<option name="pinNewTranslationDialog" value="true" />
|
<option name="pinNewTranslationDialog" value="true" />
|
||||||
<histories>
|
<histories>
|
||||||
|
<item value="A widget that manages a [FocusNode] to allow keyboard focus to be given to this widget and its descendants. When the focus is gained or lost, [onFocusChange] is called. For keyboard events, [onKey] is called if [FocusNode.hasFocus] is true for this widget's [focusNode], unless a focused descendant's [onKey] callback returns [KeyEventResult.handled] when called. This widget does not provide any visual indication that the focus has changed. Any desired visual changes should be made when [onFocusChange] is called. To access the [FocusNode] of the nearest ancestor [Focus] widget and establish a relationship that will rebuild the widget when the focus changes, use the [Focus.of] and [FocusScope.of] static methods. To access the focused state of the nearest [Focus] widget, use [FocusNode.hasFocus] from a build method, which also establishes a relationship between the calling widget and the [Focus] widget that will rebuild the calling widget when the focus changes. Managing a [FocusNode] means managing its lifecycle, listening for changes in focus, and re-parenting it when needed to keep the focus hierarchy in sync with the widget hierarchy. This widget does all of those things for you. See [FocusNode] for more information about the details of what node management entails if you are not using a [Focus] widget and you need to do it yourself. To collect a sub-tree of nodes into an exclusive group that restricts focus traversal to the group, use a [FocusScope]. To collect a sub-tree of nodes into a group that has a specific order to its traversal but allows the traversal to escape the group, use a [FocusTraversalGroup]. To move the focus, use methods on [FocusNode] by getting the [FocusNode] through the [of] method. For instance, to move the focus to the next node in the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus a widget, call `Focus.of(context).unfocus()`. {@tool dartpad --template=stateful_widget_scaffold} This example shows how to manage focus using the [Focus] and [FocusScope] widgets. See [FocusNode] for a similar example that doesn't use [Focus] or [FocusScope]." />
|
||||||
<item value="LayoutBuilder does not support returning intrinsic dimensions." />
|
<item value="LayoutBuilder does not support returning intrinsic dimensions." />
|
||||||
<item value="壮举:避免 Cardio Plus 设备 连接到此应用" />
|
<item value="壮举:避免 Cardio Plus 设备 连接到此应用" />
|
||||||
<item value="壮举:避免 Cardio Plus 设备 连接到此应用程序" />
|
<item value="壮举:避免 Cardio Plus 设备 连接到此应用程序" />
|
||||||
@@ -30,8 +31,8 @@
|
|||||||
</histories>
|
</histories>
|
||||||
<option name="languageScores">
|
<option name="languageScores">
|
||||||
<map>
|
<map>
|
||||||
<entry key="CHINESE" value="15" />
|
<entry key="CHINESE" value="16" />
|
||||||
<entry key="ENGLISH" value="16" />
|
<entry key="ENGLISH" value="17" />
|
||||||
</map>
|
</map>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
|
|||||||
Reference in New Issue
Block a user