Compare commits
6 Commits
4e732979c3
...
f09715e3cd
| Author | SHA1 | Date | |
|---|---|---|---|
| f09715e3cd | |||
| c3ea2481df | |||
| e3fbed8abd | |||
| 6d24c26821 | |||
| 349051f5d0 | |||
| a253c1d628 |
@@ -18,6 +18,13 @@
|
||||
</component>
|
||||
<component name="Translation.States">
|
||||
<histories>
|
||||
<item value="character id" />
|
||||
<item value="If the current action is not removing an element, update [_selectedElements] with [defaultData]. Otherwise, keep the previous value of [_selectedElements], preventing it from being updated by [defaultData]. Note: [didUpdateWidget] is called whenever the widget is updated, so it's important to control when [_selectedElements] should be updated. This is also executed if and only if we do not have any elements selected, because in this way we will only have an update if an element is selected after the widget is built. Recommendation: Over time this entire implementation should be migrated to [ValueNotifier], with a singleton abstraction." />
|
||||
<item value="A generic class that standardizes elements for consistent manipulation. The `Choice` class provides a standardized way to handle different types of elements within a list, menu, or selection field. Each instance of `Choice` contains a unique key (`key`), a display value (`value`), and optional metadata of any type, making it highly versatile." />
|
||||
<item value="MenuItemButton Style" />
|
||||
<item value="Track" />
|
||||
<item value="nodes track" />
|
||||
<item value="can overlap" />
|
||||
<item value="A default hash function used by the platform in various places. This is currently the [Jenkins hash function][1] but using masking to keep values in SMI range. [1]: http:en.wikipedia.orgwikiJenkins_hash_function Use: Hash each value with the hash of the previous value, then get the final hash by calling finish. ``` var hash = 0; for (var value in values) { hash = SystemHash.combine(hash, value.hashCode); } hash = SystemHash.finish(hash); ``` TODO(lrn): Consider specializing this code per platform, so the VM can use its 64-bit integers directly." />
|
||||
<item value="The bytes to decode into an image. The bytes represent encoded image bytes and can be encoded in any of the following supported image formats: {@macro dart.ui.imageFormats} See also: [PaintingBinding.instantiateImageCodecWithSize]" />
|
||||
<item value="The linear scale factor for drawing this image at its intended size. The scale factor applies to the width and the height. {@template flutter.painting.imageInfo.scale} For example, if this is 2.0, it means that there are four image pixels for every one logical pixel, and the image's actual width and height (as given by the [dart:ui.Image.width] and [dart:ui.Image.height] properties) are double the height and width that should be used when painting the image (e.g. in the arguments given to [Canvas.drawImage]). {@endtemplate}" />
|
||||
@@ -61,13 +68,6 @@
|
||||
<item value="When item position is not available, because it's too far, the scroll is composed into three phases:" />
|
||||
<item value="The [duration] must be greater than 0; otherwise, use [jumpTo]." />
|
||||
<item value="use penetrate" />
|
||||
<item value="Reorderable (drag and drop) version of [Wrap], A widget that displays its children in multiple horizontal or vertical runs. In addition to [Wrap]'s parameters, this widget also adds two parameters, [minMainAxisCount] and [maxMainAxisCount], that limits how many children each run has at least and at most. For example, if the size of parent widget allows a run to have more than [maxMainAxisCount] children, the run is forced to end and will have [maxMainAxisCount] children only. All [children] must have a key. See also: [Wrap], which displays its children in multiple horizontal or vertical runs." />
|
||||
<item value="The reserved word `null` denotes an object that is the sole instance of this class. The `Null` class is the only class which does not implement `Object`. It is a compile-time error for a class to attempt to extend or implement [Null]. The language contains a number of specialized operators for working with `null` value. Examples: ```dart e1! Throws if e1 is null. e2 ?? e3 Same as e2, unless e2 is null, then use value of e3 x ??= e4 Same as x unless x is null, then same as `x = e4`. e5?.foo() call `foo` on e5, unless e5 is null. [...? e6] spreads e6 into the list literal, unless e6 is null. ```" />
|
||||
<item value="Typically set to true when the [InputDecorator] contains a multiline [TextField] ([TextField.maxLines] is null or > 1) to override the default behavior of aligning the label with the center of the [TextField]. Defaults to false." />
|
||||
<item value="The direction to use for the [hintText]. If null, defaults to a value derived from [Directionality] for the input field and the current context." />
|
||||
<item value="Set the initial position at the position where this gesture recognizer won the arena." />
|
||||
<item value="Set the initial offset at the position where the first down event was detected." />
|
||||
<item value="{@macro flutter.widgets.shadow.scrollBehavior} [ScrollBehavior]s also provide [ScrollPhysics]. If an explicit [ScrollPhysics] is provided in [physics], it will take precedence, followed by [scrollBehavior], and then the inherited ancestor [ScrollBehavior]. The [ScrollBehavior] of the inherited [ScrollConfiguration] will be modified by default to not apply a [Scrollbar]." />
|
||||
</histories>
|
||||
<option name="languageScores">
|
||||
<map>
|
||||
|
||||
Reference in New Issue
Block a user