|
|
<application>
|
|
|
<component name="AppStorage">
|
|
|
<option name="newTranslationDialogHeight" value="304" />
|
|
|
<option name="newTranslationDialogWidth" value="494" />
|
|
|
<option name="newTranslationDialogX" value="811" />
|
|
|
<option name="newTranslationDialogY" value="447" />
|
|
|
<option name="pinTranslationDialog" value="true" />
|
|
|
<histories>
|
|
|
<item value="The [address] can either be a [String] or an [InternetAddress]. If [address] is a [String], [bind] will perform a [InternetAddress.lookup] and use the first value in the list. To listen on the loopback adapter, which will allow only incoming connections from the local host, use the value [InternetAddress.loopbackIPv4] or [InternetAddress.loopbackIPv6]. To allow for incoming connection from the network use either one of the values [InternetAddress.anyIPv4] or [InternetAddress.anyIPv6] to bind to all interfaces or the IP address of a specific interface. If an IP version 6 (IPv6) address is used, both IP version 6 (IPv6) and version 4 (IPv4) connections will be accepted. To restrict this to version 6 (IPv6) only, use [v6Only] to set version 6 only. However, if the address is [InternetAddress.loopbackIPv6], only IP version 6 (IPv6) connections will be accepted." />
|
|
|
<item value="The [address] can either be a [String] or an [InternetAddress]. If [address] is a [String], [bind] will perform a [InternetAddress.lookup] and use the first value in the list. To listen on the loopback adapter, which will allow only incoming connections from the local host, use the value [InternetAddress.loopbackIPv4] or [InternetAddress.loopbackIPv6]. To allow for incoming connection from the network use either one of the values [InternetAddress.anyIPv4] or [InternetAddress.anyIPv6] to bind to all interfaces or the IP address of a specific interface." />
|
|
|
<item value="Starts listening for HTTP requests on the specified [address] and [port]. The [address] can either be a [String] or an [InternetAddress]. If [address] is a [String], [bind] will perform a [InternetAddress.lookup] and use the first value in the list. To listen on the loopback adapter, which will allow only incoming connections from the local host, use the value [InternetAddress.loopbackIPv4] or [InternetAddress.loopbackIPv6]. To allow for incoming connection from the network use either one of the values [InternetAddress.anyIPv4] or [InternetAddress.anyIPv6] to bind to all interfaces or the IP address of a specific interface." />
|
|
|
<item value="implement" />
|
|
|
<item value="实现" />
|
|
|
<item value="Leveled" />
|
|
|
<item value="Leveled Value" />
|
|
|
<item value="crease Level" />
|
|
|
<item value="Starts the clock for this [Ticker]. If the ticker is not [muted], then this also starts calling the ticker's callback once per animation frame. The returned future resolves once the ticker [stop]s ticking. If the ticker is disposed, the future does not resolve. A derivative future is available from the returned [TickerFuture] object that resolves with an error in that case, via [TickerFuture.orCancel]. Calling this sets [isActive] to true. This method cannot be called while the ticker is active. To restart the ticker, first [stop] it. By convention, this method is used by the object that receives the ticks (as opposed to the [TickerProvider] which created the ticker)." />
|
|
|
<item value="fix: GS-1563 can't input '’' on trivia edit page." />
|
|
|
<item value="fix: GS-1563 can't input '’' on trivia edit field." />
|
|
|
<item value="feat: add deprecated annotation to avoid others use UserInfoPage and SoulProfilePage directly." />
|
|
|
<item value="注解" />
|
|
|
<item value="translation" />
|
|
|
<item value="Same as [render], but takes both the position and the size as a single [Rect]. Note: only use this if you are already using [Rect]'s to represent both the position and dimension of your [Sprite]. If you are using [Vector2]s, prefer the other method." />
|
|
|
<item value="Fill the target box by distorting the source's aspect ratio. " />
|
|
|
<item value="As small as possible while still covering the entire target box. {@template flutter.painting.BoxFit.cover} To actually clip the content, use `clipBehavior: Clip.hardEdge` alongside this in a [FittedBox]. {@endtemplate} " />
|
|
|
<item value="A [Sprite] is a region of an [Image] that can be rendered in the Canvas. It might represent the entire image or be one of the pieces a spritesheet is composed of. It holds a reference to the source image from which the region is extracted, and the [src] rectangle is the portion inside that image that is to be rendered (not to be confused with the `dest` rect, which is where in the Canvas the sprite is rendered). It also has a [paint] field that can be overwritten to apply a tint to this [Sprite] (default is white, meaning no tint)." />
|
|
|
<item value="mem Cache Height" />
|
|
|
<item value="Resolves this image provider using the given `configuration`, returning an [ImageStream]. This is the public entry-point of the [ImageProvider] class hierarchy. Subclasses should implement [obtainKey] and [load], which are used by this method. If they need to change the implementation of [ImageStream] used, they should override [createStream]. If they need to manage the actual resolution of the image, they should override [resolveStreamForKey]. See the Lifecycle documentation on [ImageProvider] for more information. @nonVirtual" />
|
|
|
<item value="Schedules [component] to be added as a child to this component. This method is robust towards being called from any place in the user code: you can call it while iterating over the component tree, during mounting or async loading, when the Game object is already loaded or not. The cost of this flexibility is that the component won't be added right away. Instead, it will be placed into a queue, and then added later, after it has finished loading, but no sooner than on the next game tick. When multiple children are scheduled to be added to the same parent, we start loading all of them as soon as possible. Nevertheless, the children will end up being added to the parent in exactly the same order as they were originally scheduled by the user, regardless of how fast or slow each of them loads. A component can be added to a parent which may not be mounted to the game tree yet. In such case, the component will start loading immediately, but its mounting will be delayed until such time when the parent becomes mounted. This method returns a future that completes when the component is done loading, and mounting if the parent is currently mounted. However, this future will not guarantee that the component will become "fully mounted": it still needs to be added to the parent's children list, and that operation will only be done on the next game tick. A component can only be added to one parent at a time. It is an error to try to add it to multiple parents, or even to the same parent multiple times. If you need to change the parent of a component, use the [changeParent] method." />
|
|
|
<item value="will accelerate to the left at rate of 40 pxs" />
|
|
|
<item value="acceleration" />
|
|
|
<item value="Sprite" />
|
|
|
<item value="A way to produce Future objects and to complete them later with a value or error. Most of the time, the simplest way to create a future is to just use one of the [Future] constructors to capture the result of a single asynchronous computation: ```dart Future(() { doSomething(); return result; }); ``` or, if the future represents the result of a sequence of asynchronous computations, they can be chained using [Future.then] or similar functions on [Future]: ```dart Future doStuff(){ return someAsyncOperation().then((result) { return someOtherAsyncOperation(result); }); } ``` If you do need to create a Future from scratch — for example, when you're converting a callback-based API into a Future-based one — you can use a Completer as follows: ```dart class AsyncOperation { final Completer _completer = new Completer(); Future<T> doOperation() { _startOperation(); return _completer.future; Send future object back to client. } Something calls this when the value is ready. void _finishOperation(T result) { _completer.complete(result); } If something goes wrong, call this. void _errorHappened(error) { _completer.completeError(error); } } ```" />
|
|
|
<item value="Creates a new completer. The general workflow for creating a new future is to 1) create a new completer, 2) hand out its future, and, at a later point, 3) invoke either [complete] or [completeError]. The completer completes the future asynchronously. That means that callbacks registered on the future are not called immediately when [complete] or [completeError] is called. Instead the callbacks are delayed until a later microtask. Example: ```dart var completer = new Completer(); handOut(completer.future); later: { completer.complete('completion value'); } ```" />
|
|
|
<item value="Loads the specified image with [fileName] into the cache. By default the key in the cache is the [fileName], if another key is desired, specify the optional [key] argument." />
|
|
|
<item value="转场" />
|
|
|
<item value="A Material Design linear progress indicator, also known as a progress bar. {@youtube 560 315 https:www.youtube.comwatch?v=O-rhXZLtpv0} A widget that shows progress along a line. There are two kinds of linear progress indicators: _Determinate_. Determinate progress indicators have a specific value at each point in time, and the value should increase monotonically from 0.0 to 1.0, at which time the indicator is complete. To create a determinate progress indicator, use a non-null [value] between 0.0 and 1.0. _Indeterminate_. Indeterminate progress indicators do not have a specific value at each point in time and instead indicate that progress is being made without indicating how much progress remains. To create an indeterminate progress indicator, use a null [value]. The indicator line is displayed with [valueColor], an animated value. To specify a constant color value use: `AlwaysStoppedAnimation<Color>(color)`. The minimum height of the indicator can be specified using [minHeight]. The indicator can be made taller by wrapping the widget with a [SizedBox]. {@tool dartpad} This example shows a [LinearProgressIndicator] with a changing value. See code in examplesapilibmaterialprogress_indicatorlinear_progress_indicator.0.dart {@end-tool} See also: [CircularProgressIndicator], which shows progress along a circular arc. [RefreshIndicator], which automatically displays a [CircularProgressIndicator] when the underlying vertical scrollable is overscrolled. <https:material.iodesigncomponentsprogress-indicators.htmllinear-progress-indicators>" />
|
|
|
<item value="The handler for [SemanticsAction.tap]. This is the semantic equivalent of a user briefly tapping the screen with the finger without moving it. For example, a button should implement this action. VoiceOver users on iOS and TalkBack users on Android can trigger this action by double-tapping the screen while an element is focused." />
|
|
|
<item value="confirmed" />
|
|
|
<item value="UGC SOUL MODIFY PROFILE CD" />
|
|
|
<item value="Returns a sentinel for use with set() or update() to include a server-generated timestamp in the written data." />
|
|
|
<item value="off Axis Fraction" />
|
|
|
<item value="use Magnifier" />
|
|
|
<item value="squeeze" />
|
|
|
<item value="user Avatar" />
|
|
|
<item value="naughty" />
|
|
|
<item value="granted Chat Right By Ref" />
|
|
|
<item value="spam Check" />
|
|
|
<item value="Creates an image filter that applies a matrix transformation. For example, applying a positive scale matrix (see [Matrix4.diagonal3]) when used with [BackdropFilter] would magnify the background image." />
|
|
|
<item value="Composes the `inner` filter with `outer`, to combine their effects. Creates a single [ImageFilter] that when applied, has the same effect as subsequently applying `inner` and `outer`, i.e., result = outer(inner(source))." />
|
|
|
<item value="[BackdropFilter], a widget that applies [ImageFilter] to its rendering. [ImageFiltered], a widget that applies [ImageFilter] to its children. [SceneBuilder.pushBackdropFilter], which is the low-level API for using this class as a backdrop filter. [SceneBuilder.pushImageFilter], which is the low-level API for using this class as a child layer filter." />
|
|
|
<item value="Whether this entry occludes the entire overlay. If an entry claims to be opaque, then, for efficiency, the overlay will skip building entries below that entry unless they have [maintainState] set." />
|
|
|
<item value="_status Bar Hidded" />
|
|
|
<item value="_status Bar Hidden" />
|
|
|
<item value="maintain State" />
|
|
|
<item value="opaque" />
|
|
|
<item value="Schedule a callback for the end of this frame. Does not request a new frame. This callback is run during a frame, just after the persistent frame callbacks (which is when the main rendering pipeline has been flushed). If a frame is in progress and post-frame callbacks haven't been executed yet, then the registered callback is still executed during the frame. Otherwise, the registered callback is executed during the next frame. The callbacks are executed in the order in which they have been added. Post-frame callbacks cannot be unregistered. They are called exactly once. See also: [scheduleFrameCallback], which registers a callback for the start of the next frame." />
|
|
|
<item value="Fullscreen display with status and navigation elements rendered over the application. Available starting at SDK 29 or Android 10. Earlier versions of Android will not be affected by this setting. For applications running on iOS, the status bar and home indicator will be visible. The system overlays will not disappear or reappear in this mode as they are permanently displayed on top of the application. See also: [SystemUiOverlayStyle], can be used to configure transparent status and navigation bars with or without a contrast scrim." />
|
|
|
</histories>
|
|
|
<option name="languageScores">
|
|
|
<map>
|
|
|
<entry key="CHINESE" value="494" />
|
|
|
<entry key="ENGLISH" value="495" />
|
|
|
<entry key="GERMAN" value="1" />
|
|
|
<entry key="FRENCH" value="1" />
|
|
|
<entry key="INDONESIAN" value="1" />
|
|
|
</map>
|
|
|
</option>
|
|
|
</component>
|
|
|
<component name="Cache">
|
|
|
<option name="lastTrimTime" value="1669368655761" />
|
|
|
</component>
|
|
|
<component name="Settings">
|
|
|
<option name="phoneticFontFamily" value="DejaVu Sans Mono" />
|
|
|
<option name="primaryFontFamily" value="Noto Sans CJK SC Regular" />
|
|
|
<option name="showActionsInContextMenuOnlyWithSelection" value="false" />
|
|
|
<option name="youdaoTranslateSettings">
|
|
|
<youdao-translate>
|
|
|
<option name="appId" value="6ff353d64c7c642b" />
|
|
|
</youdao-translate>
|
|
|
</option>
|
|
|
</component>
|
|
|
</application> |