You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
10 KiB
81 lines
10 KiB
<application>
|
|
<component name="Translation.Cache">
|
|
<option name="lastTrimTime" value="1734405283380" />
|
|
</component>
|
|
<component name="Translation.Settings">
|
|
<option name="primaryLanguage" value="CHINESE" />
|
|
</component>
|
|
<component name="Translation.States">
|
|
<option name="pinTranslationDialog" value="true" />
|
|
<option name="translationDialogHeight" value="702" />
|
|
<option name="translationDialogLocationX" value="591" />
|
|
<option name="translationDialogLocationY" value="536" />
|
|
<option name="translationDialogWidth" value="1253" />
|
|
<histories>
|
|
<item value="The default for whether to use Windows or non-Windows semantics is determined from the platform Dart is running on. When running in the standalone VM, this is detected by the VM based on the operating system. When running in a browser, non-Windows semantics is always used." />
|
|
<item value="If the URI is absolute, the path starts with a path separator unless Windows semantics is used and the first path segment is a drive letter. When Windows semantics is used, a host component in the uri in interpreted as a file server and a UNC path is returned." />
|
|
<item value="For Windows semantics, the backslash ("\\") separator is used to separate path segments." />
|
|
<item value="Creates a file path from a file URI. The returned path has either Windows or non-Windows semantics. For non-Windows semantics, the slash ("") is used to separate path segments." />
|
|
<item value="register" />
|
|
<item value="with object entry spacing" />
|
|
<item value="Separators" />
|
|
<item value="AFTER" />
|
|
<item value="INDENT OUTPUT" />
|
|
<item value="WRAP ROOT VALUE" />
|
|
<item value="plugin descriptor" />
|
|
<item value="collect" />
|
|
<item value="system independent" />
|
|
<item value="ignore cleanser empty" />
|
|
<item value="预处理" />
|
|
<item value="shake" />
|
|
<item value="shark" />
|
|
<item value="flattened" />
|
|
<item value="The type of the [RawAutocomplete] callback which returns a [Widget] that displays the specified [options] and calls [onSelected] if the user selects an option. The returned widget from this callback will be wrapped in an [AutocompleteHighlightedOption] inherited widget. This will allow this callback to determine which option is currently highlighted for keyboard navigation. See also: [RawAutocomplete.optionsViewBuilder], which is of this type." />
|
|
<item value="{@macro flutter.widgets.RawAutocomplete.optionsViewBuilder} If not provided, will build a standard Material-style list of results by default." />
|
|
<item value="Sweep&scrub" />
|
|
<item value="Suction" />
|
|
<item value="subtract" />
|
|
<item value="TD: The native flutter tooltip uses verticalOffset to space the tooltip from the child. But we'll likely need just offset, since it's 4 way directional this.verticalOffset = 24.0," />
|
|
<item value="The vertical offset of the tooltip from its target widget. Defaults to `0.0`." />
|
|
<item value="The minimum margin between the tooltip and the edges of the screen. Defaults to `20.0`." />
|
|
<item value="[top], [right], [bottom], [left] define the distance between the respective edges of the tooltip and the corresponding edges of the screen. If not provided, the tooltip will be positioned as close as possible to the specified edge, respecting the `minimumOutsideMargin`." />
|
|
<item value="Whether the tooltip should snap to the top or bottom of the screen if there's not enough space in the preferred direction. Defaults to `false`." />
|
|
<item value="snaps far away vertically" />
|
|
<item value="A special value that doesn't change cursor by itself, but make a region that blocks other regions behind it from changing the cursor. When a pointer enters a region with a cursor of [uncontrolled], the pointer retains its previous cursor and keeps so until it moves out of the region. Technically, this region absorb the mouse cursor hit test without changing the pointer's cursor. This is useful in a region that displays a platform view, which let the operating system handle pointer events and change cursors accordingly. To achieve this, the region's cursor must not be any Flutter cursor, since that might overwrite the system request upon pointer entering; the cursor must not be null either, since that allows the widgets behind the region to change cursors." />
|
|
<item value="A special class that indicates that the region with this cursor defers the choice of cursor to the next region behind it. When an event occurs, [MouseTracker] will update each pointer's cursor by finding the list of regions that contain the pointer's location, from front to back in hit-test order. The pointer's cursor will be the first cursor in the list that is not a [MouseCursor.defer]." />
|
|
<item value="uncontrolled" />
|
|
<item value="defer" />
|
|
<item value="A widget representing a rotating expandcollapse button. The icon rotates 180 degrees when pressed, then reverts the animation on a second press. The underlying icon is [Icons.expand_more]. The expand icon does not include a semantic label for accessibility. In order to be accessible it should be combined with a label using [MergeSemantics]. This is done automatically by the [ExpansionPanel] widget. See [IconButton] for a more general implementation of a pressable button with an icon. See also: https:material.iodesigniconographysystem-icons.html" />
|
|
<item value="Creates a tooltip. By default, tooltips should adhere to the [Material specification](https:material.iodesigncomponentstooltips.htmlspec). If the optional constructor parameters are not defined, the values provided by [TooltipTheme.of] will be used if a [TooltipTheme] is present or specified in [ThemeData]. All parameters that are defined in the constructor will override the default values _and_ the values in [TooltipTheme.of]. Only one of [message] and [richMessage] may be non-null." />
|
|
<item value="force supply stop" />
|
|
<item value="force supply estop" />
|
|
<item value="Raw RGBA format. Unencoded bytes, in RGBA row-primary form with premultiplied alpha, 8 bits per channel." />
|
|
<item value="Raw straight RGBA format. Unencoded bytes, in RGBA row-primary form with straight alpha, 8 bits per channel." />
|
|
<item value="Raw unmodified format. Unencoded bytes, in the image's existing format. For example, a grayscale image may use a single 8-bit channel for each pixel." />
|
|
<item value="Raw extended range RGBA format. Unencoded bytes, in RGBA row-primary form with straight alpha, 32 bit float (IEEE 754 binary32) per channel. Example usage: ```dart import 'dart:ui' as ui; import 'dart:typed_data'; Future<Map<String, double>> getFirstPixel(ui.Image image) async { final ByteData data = (await image.toByteData(format: ui.ImageByteFormat.rawExtendedRgba128))!; final Float32List floats = Float32List.view(data.buffer); return <String, double>{ 'r': floats[0], 'g': floats[1], 'b': floats[2], 'a': floats[3], }; } ```" />
|
|
<item value="PNG format. A loss-less compression format for images. This format is well suited for images with hard edges, such as screenshots or sprites, and images with text. Transparency is supported. The PNG format supports images up to 2,147,483,647 pixels in either dimension, though in practice available memory provides a more immediate limitation on maximum image size. PNG images normally use the `.png` file extension and the `imagepng` MIME type. See also: <https:en.wikipedia.orgwikiPortable_Network_Graphics>, the Wikipedia page on PNG. <https:tools.ietf.orgrfcrfc2083.txt>, the PNG standard." />
|
|
<item value="跨门中" />
|
|
<item value="task running phase gate throughing" />
|
|
<item value="safety warnning" />
|
|
<item value="Whether the decoration is the same size as the input field. A collapsed decoration cannot have [labelText], [errorText], an [icon]. To create a collapsed input decoration, use [InputDecoration.collapsed]." />
|
|
<item value="Writes a string to a file. Opens the file, writes the string in the given encoding, and closes the file. Returns a `Future<File>` that completes with this [File] object once the entire operation has completed. By default [writeAsString] creates the file for writing and truncates the file if it already exists. In order to append the bytes to an existing file, pass [FileMode.append] as the optional mode parameter. If the argument [flush] is set to `true`, the data written will be flushed to the file system before the returned future completes." />
|
|
<item value="absorption" />
|
|
<item value="SYSTEM UI FLAG IMMERSIVE" />
|
|
<item value="Window flag: hide all screen decorations (such as the status bar) while this window is displayed. This allows the window to use the entire display space for itself -- the status bar will be hidden when an app window with this flag set is on the top layer. A fullscreen window will ignore a value of SOFT_INPUT_ADJUST_RESIZE for the window's softInputMode field; the window will stay fullscreen and will not resize. This flag can be controlled in your theme through the android. R. attr. windowFullscreen attribute; this attribute is automatically set for you in the standard fullscreen themes such as android. R. style. Theme_NoTitleBar_Fullscreen, android. R. style. Theme_Black_NoTitleBar_Fullscreen, android. R. style. Theme_Light_NoTitleBar_Fullscreen, android. R. style. Theme_Holo_NoActionBar_Fullscreen, android. R. style. Theme_Holo_Light_NoActionBar_Fullscreen, android. R. style. Theme_DeviceDefault_NoActionBar_Fullscreen, and android. R. style. Theme_DeviceDefault_Light_NoActionBar_Fullscreen. Deprecated Use WindowInsetsController. hide(int) with WindowInsets. Type. statusBars() instead." />
|
|
</histories>
|
|
<option name="languageScores">
|
|
<map>
|
|
<entry key="CHINESE" value="646" />
|
|
<entry key="CHINESE_SIMPLIFIED" value="239" />
|
|
<entry key="ENGLISH" value="877" />
|
|
<entry key="FRENCH" value="1" />
|
|
<entry key="GERMAN" value="1" />
|
|
<entry key="HAWAIIAN" value="1" />
|
|
<entry key="INDONESIAN" value="2" />
|
|
<entry key="NORWEGIAN" value="1" />
|
|
<entry key="POLISH" value="1" />
|
|
<entry key="ROMANIAN" value="1" />
|
|
</map>
|
|
</option>
|
|
</component>
|
|
</application> |