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
12 KiB
81 lines
12 KiB
<application>
|
|
<component name="Translation.Cache">
|
|
<option name="lastTrimTime" value="1733185025986" />
|
|
</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="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." />
|
|
<item value="Gets the headers associated with the request. These are represented as a mapping of header name to header value. Returns: the headers associated with the request." />
|
|
<item value="Greeting" />
|
|
<item value="The default style configures the system bars with a transparent background when contrast can be enforced by the system (API 29 or above). On older platforms (which only have 3-button 2-button navigation modes), an equivalent scrim is applied to ensure contrast with the system bars." />
|
|
<item value="Progress" />
|
|
<item value="The sewage tank is currently empty, and there is sufficient clean water. Please confirm that the drainage pipe is in the lowered position before starting the self-cleaning of the sewage tank." />
|
|
<item value="Please confirm the drainage pipe is in the lowered position before starting self-cleaning." />
|
|
<item value="allow snapshotting" />
|
|
<item value="fullscreen dialog" />
|
|
<item value="maintain state" />
|
|
<item value="Return the presentation of this type as it should appear when presented to users in contexts such as error messages. If [withNullability] is `true`, then [NullabilitySuffix.question] and [NullabilitySuffix.star] will be represented as `?` and ``. [NullabilitySuffix.none] does not have any explicit presentation. If [withNullability] is `false`, nullability suffixes will not be included into the presentation. Clients should not depend on the content of the returned value as it will be changed if doing so would improve the UX." />
|
|
<item value="A [Reflector] implementation that performs no actual reflection, instead returning empty objects on every invocation. Use this in contexts where you know you won't need any reflective capabilities." />
|
|
<item value="A [Reflector] implementation that performs simple [Map] lookups. `package:angel_container_generator` uses this to create reflectors from analysis metadata." />
|
|
<item value="Adds a description of a specific type of widget missing from the current build context's ancestry tree. You can find an example of using this method in [debugCheckHasMaterial]." />
|
|
<item value="Returns the nearest widget of the given type `T` and creates a dependency on it, or null if no appropriate widget is found. The widget found will be a concrete [InheritedWidget] subclass, and calling [dependOnInheritedWidgetOfExactType] registers this build context with the returned widget. When that widget changes (or a new widget of that type is introduced, or the widget goes away), this build context is rebuilt so that it can obtain new values from that widget. {@template flutter.widgets.BuildContext.dependOnInheritedWidgetOfExactType} This is typically called implicitly from `of()` static methods, e.g. [Theme.of]." />
|
|
<item value="This callback shouldn't be used to update the slider [value] (use [onChanged] for that), but rather to be notified when the user has started selecting a new value by starting a drag or with a tap. The value passed will be the last [value] that the slider had before the change began." />
|
|
<item value="Called when the user starts selecting a new value for the slider." />
|
|
<item value="If [exclusive] is `true` and to-be-created file already exists, this operation completes the future with a [FileSystemException]. If [exclusive] is `false`, existing files are left untouched by [createSync]. Calling [createSync] on an existing file still might fail if there are restrictive permissions on the file." />
|
|
<item value="gapless playback" />
|
|
<item value="timbres" />
|
|
<item value="Make this message read-only. Marks this message, and any sub-messages, as read-only." />
|
|
<item value="alert map" />
|
|
<item value="solution key" />
|
|
<item value="Creates an iOS 14 style selection overlay that highlights the magnified area (or the currently selected item, depending on how you described it elsewhere) of a [CupertinoPicker]. The [background] argument default value is [CupertinoColors.tertiarySystemFill]. It must be non-null. The [capStartEdge] and [capEndEdge] arguments decide whether to add a default margin and use rounded corners on the left and right side of the rectangular overlay. Default to true and must not be null." />
|
|
</histories>
|
|
<option name="languageScores">
|
|
<map>
|
|
<entry key="CHINESE" value="646" />
|
|
<entry key="CHINESE_SIMPLIFIED" value="217" />
|
|
<entry key="ENGLISH" value="857" />
|
|
<entry key="FRENCH" value="1" />
|
|
<entry key="GERMAN" value="1" />
|
|
<entry key="HAWAIIAN" value="1" />
|
|
<entry key="INDONESIAN" value="1" />
|
|
<entry key="NORWEGIAN" value="1" />
|
|
<entry key="POLISH" value="1" />
|
|
<entry key="ROMANIAN" value="1" />
|
|
</map>
|
|
</option>
|
|
</component>
|
|
</application> |