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.

75 lines
17 KiB

<application>
<component name="AppStorage">
<option name="newTranslationDialogWidth" value="596" />
<option name="newTranslationDialogX" value="811" />
<option name="newTranslationDialogY" value="447" />
<histories>
<item value="permanent" />
<item value="Injects an `Instance&lt;S&gt;` in memory. No need to define the generic type `&lt;[S]&gt;` as it's inferred from the [dependency] parameter. - [dependency] The Instance to be injected. - [tag] optionally, use a [tag] as an &quot;id&quot; to create multiple records of the same `Type&lt;S&gt;` the [tag] does not conflict with the same tags used by other dependencies Types. - [permanent] keeps the Instance in memory and persist it, not following `Get.smartManagement` rules. Although, can be removed by `GetInstance.reset()` and `Get.delete()` - [builder] If defined, the [dependency] must be returned from here" />
<item value="The ParentDataWidget Expanded(flex: 1) wants to apply ParentData of type FlexParentData to a Iflutter (30455): RenderObject, which has been set up to accept ParentData of incompatible type StackParentData. Iflutter (30455): Usually, this means that the Expanded widget has the wrong ancestor RenderObjectWidget. Typically, Iflutter (30455): Expanded widgets are placed directly inside Flex widgets. Iflutter (30455): The offending Expanded is currently placed inside a Stack widget. Iflutter (30455): The ownership chain for the RenderObject that received the incompatible parent data was: Iflutter (30455): SizedBox.expand ← Expanded ← GroupChatMessagesListView&lt;GroupChatMessagesRecord&gt; ← Stack ← Iflutter (30455): GetBuilder&lt;GroupChatMessagesListController&gt; ← GroupChatMessagesList ← Expanded ← Column ← MediaQuery Iflutter (30455): ← Padding ← ⋯" />
<item value="time Stamp" />
<item value="set Chat Item Comparer" />
<item value="set Chat Item Compare" />
<item value="Used to annotate an instance member (method, getter, setter, operator, or field) `m` in a class `C` or mixin `M`. Indicates that `m` should not be overridden in any classes that extend or mixin `C` or `M`. Tools, such as the analyzer, can provide feedback if the annotation is associated with anything other than an instance member, the annotation is associated with an abstract member (because subclasses are required to override the member), the annotation is associated with an extension method, the annotation is associated with a member `m` in class `C`, and there is a class `D` or mixin `M`, that extends or mixes in `C`, that declares an overriding member `m`." />
<item value="Annotation marking a class as not allowed as a super-type. Classes in the same package as the marked class may extend, implement or mix-in the annotated class. Tools, such as the analyzer, can provide feedback if the annotation is associated with anything other than a class, the annotation is associated with a class `C`, and there is a class or mixin `D`, which extends, implements, mixes in, or constrains to `C`, and `C` and `D` are declared in different packages." />
<item value="TODO(srawlins): Add a sentence which defines &quot;referencing&quot; and explicitly mentions tearing off, here and on the other annotations which use the word &quot;referenced.&quot;" />
<item value="on Jump To Bottom" />
<item value="This notifier's value is true if a scroll is underway and false if the scroll position is idle. Listeners added by stateful widgets should be removed in the widget's [State.dispose] method." />
<item value="Describes how [Scrollable] widgets should behave. {@template flutter.widgets.scrollBehavior} Used by [ScrollConfiguration] to configure the [Scrollable] widgets in a subtree. This class can be extended to further customize a [ScrollBehavior] for a subtree. For example, overriding [ScrollBehavior.getScrollPhysics] sets the default [ScrollPhysics] for [Scrollable]s that inherit this [ScrollConfiguration]. Overriding [ScrollBehavior.buildOverscrollIndicator] can be used to add or change the default [GlowingOverscrollIndicator] decoration, while [ScrollBehavior.buildScrollbar] can be changed to modify the default [Scrollbar]. When looking to easily toggle the default decorations, you can use [ScrollBehavior.copyWith] instead of creating your own [ScrollBehavior] class. The `scrollbar` and `overscrollIndicator` flags can turn these decorations off. {@endtemplate} See also: [ScrollConfiguration], the inherited widget that controls how [Scrollable] widgets behave in a subtree. @immutable" />
<item value="allow Implicit Scrolling" />
<item value="should Accept User Offset" />
<item value="Scroll physics that does not allow the user to scroll. See also: [ScrollPhysics], which can be used instead of this class when the default behavior is desired instead. [BouncingScrollPhysics], which provides the bouncing overscroll behavior found on iOS. [ClampingScrollPhysics], which provides the clamping overscroll behavior found on Android." />
<item value="Never Scrollable Scroll Physics" />
<item value="Bouncing Scroll Physics" />
<item value="Determines the overscroll by applying the boundary conditions. Called by [ScrollPosition.applyBoundaryConditions], which is called by [ScrollPosition.setPixels] just before the [ScrollPosition.pixels] value is updated, to determine how much of the offset is to be clamped off and sent to [ScrollPosition.didOverscrollBy]. The `value` argument is guaranteed to not equal the [ScrollMetrics.pixels] of the `position` argument when this is called. It is possible for this method to be called when the `position` describes an already-out-of-bounds position. In that case, the boundary conditions should usually only prevent a further increase in the extent to which the position is out of bounds, allowing a decrease to be applied successfully, so that (for instance) an animation can smoothly snap an out of bounds position to the bounds. See [BallisticScrollActivity]. This method must not clamp parts of the offset that are entirely within the bounds described by the given `position`. The given `position` is only valid during this method call. Do not keep a reference to it to use later, as the values may update, may not update, or may update to reflect an entirely unrelated scrollable. Examples [BouncingScrollPhysics] returns zero. In other words, it allows scrolling past the boundary unhindered. [ClampingScrollPhysics] returns the amount by which the value is beyond the position or the boundary, whichever is furthest from the content. In other words, it disallows scrolling past the boundary, but allows scrolling back from being overscrolled, if for some reason the position ends up overscrolled." />
<item value="Update the scroll position ([pixels]) to a given pixel value. This should only be called by the current [ScrollActivity], either during the transient callback phase or in response to user input. Returns the overscroll, if any. If the return value is 0.0, that means that [pixels] now returns the given `value`. If the return value is positive, then [pixels] is less than the requested `value` by the given amount (overscroll past the max extent), and if it is negative, it is greater than the requested `value` by the given amount (underscroll past the min extent). The amount of overscroll is computed by [applyBoundaryConditions]. The amount of the change that is applied is reported using [didUpdateScrollPositionBy]. If there is any overscroll, it is reported using [didOverscrollBy]." />
<item value="'{physics.runtimeType}.applyBoundaryConditions returned invalid overscroll value.\n' 'The method was called to consider a change from pixels to value, which is a ' 'delta of {delta.toStringAsFixed(1)} units. However, it returned an overscroll of ' '{result.toStringAsFixed(1)} units, which has a greater magnitude than the delta. ' 'The applyBoundaryConditions method is only supposed to reduce the possible range ' 'of movement, not increase it.\n' 'The scroll extents are minScrollExtent .. maxScrollExtent, and the ' 'viewport dimension is viewportDimension.'," />
<item value="Called by [setPixels] to report overscroll when an attempt is made to change the [pixels] position. Overscroll is the amount of change that was not applied to the [pixels] value." />
<item value="Start a drag activity corresponding to the given [DragStartDetails]. The `onDragCanceled` argument will be invoked if the drag is ended prematurely (e.g. from another activity taking over). See [ScrollDragController.onDragCanceled] for details." />
<item value="Interface for objects that receive updates about drags. This interface is used in various ways. For example, [MultiDragGestureRecognizer] uses it to update its clients when it recognizes a gesture. Similarly, the scrolling infrastructure in the widgets library uses it to notify the [DragScrollActivity] when the user drags the scrollable." />
<item value="pointer Scroll" />
<item value="Jumps the scroll position from its current value to the given value, without animation, and without checking if the new value is in range. Any active animation is canceled. If the user is currently scrolling, that action is canceled. If this method changes the scroll position, a sequence of startupdateend scroll notifications will be dispatched. No overscroll notifications can be generated by this method." />
<item value="The currently operative [ScrollActivity]. If the scroll position is not performing any more specific activity, the activity will be an [IdleScrollActivity]. To determine whether the scroll position is idle, check the [isScrollingNotifier]. Call [beginActivity] to change the current activity." />
<item value="did Overscroll By" />
<item value="backlog" />
<item value="The [AnimationController] will preserve its behavior. This is the default for repeating animations in order to prevent them from flashing rapidly on the screen if the widget does not take the [AccessibilityFeatures.disableAnimations] flag into account." />
<item value="Whether this entry must be included in the tree even if there is a fully [opaque] entry above it. By default, if there is an entirely [opaque] entry over this one, then this one will not be included in the widget tree (in particular, stateful widgets within the overlay entry will not be instantiated). To ensure that your overlay entry is still built even if it is not visible, set [maintainState] to true. This is more expensive, so should be done with care. In particular, if widgets in an overlay entry with [maintainState] set to true repeatedly call [State.setState], the user's battery will be drained unnecessarily. This is used by the [Navigator] and [Route] objects to ensure that routes are kept around even when in the background, so that [Future]s promised from subsequent routes will be handled properly when they complete." />
<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="rearrange" />
<item value="Insert the given entry into the overlay. If `below` is non-null, the entry is inserted just below `below`. If `above` is non-null, the entry is inserted just above `above`. Otherwise, the entry is inserted on top. It is an error to specify both `above` and `below`." />
<item value="The ParentDataWidget Expanded(flex: 1) wants to apply ParentData of type FlexParentData to a Iflutter ( 5852): RenderObject, which has been set up to accept ParentData of incompatible type BoxParentData. Iflutter ( 5852): Usually, this means that the Expanded widget has the wrong ancestor RenderObjectWidget. Typically, Iflutter ( 5852): Expanded widgets are placed directly inside Flex widgets. Iflutter ( 5852): The offending Expanded is currently placed inside a Padding widget. Iflutter ( 5852): The ownership chain for the RenderObject that received the incompatible parent data was: Iflutter ( 5852): RichText ← Container ← Expanded ← Padding ← DecoratedBox ← Container ← CreateNotificationItem ← Iflutter ( 5852): RepaintBoundary ← IndexedSemantics ← NotificationListener&lt;KeepAliveNotification&gt; ← ⋯" />
<item value="The following message was thrown building Obx(has builder, dirty, state: _ObxState249bd): Iflutter (30461): [Get] the improper use of a GetX has been detected. Iflutter (30461): You should only use GetX or Obx for the specific widget that will be updated. Iflutter (30461): If you are seeing this error, you probably did not insert any observable variables into Iflutter (30461): GetXObx Iflutter (30461): or insert them outside the scope that GetX considers suitable for an update Iflutter (30461): (example: GetX =&gt; HeavyWidget =&gt; variableObservable). Iflutter (30461): If you need to update a parent widget and a child widget, wrap each one in an ObxGetX." />
<item value="The following message was thrown building Obx(has builder, dirty, state: _ObxStatec95b4): Iflutter (30457): [Get] the improper use of a GetX has been detected. Iflutter (30457): You should only use GetX or Obx for the specific widget that will be updated. Iflutter (30457): If you are seeing this error, you probably did not insert any observable variables into Iflutter (30457): GetXObx Iflutter (30457): or insert them outside the scope that GetX considers suitable for an update Iflutter (30457): (example: GetX =&gt; HeavyWidget =&gt; variableObservable). Iflutter (30457): If you need to update a parent widget and a child widget, wrap each one in an ObxGetX." />
<item value="The following message was thrown building Obx(has builder, dirty, state: _ObxStatee0061): Iflutter (30457): [Get] the improper use of a GetX has been detected. Iflutter (30457): You should only use GetX or Obx for the specific widget that will be updated. Iflutter (30457): If you are seeing this error, you probably did not insert any observable variables into Iflutter (30457): GetXObx Iflutter (30457): or insert them outside the scope that GetX considers suitable for an update Iflutter (30457): (example: GetX =&gt; HeavyWidget =&gt; variableObservable). Iflutter (30457): If you need to update a parent widget and a child widget, wrap each one in an ObxGetX." />
<item value="Cancels this subscription. After this call, the subscription no longer receives events. The stream may need to shut down the source of events and clean up after the subscription is canceled. Returns a future that is completed once the stream has finished its cleanup. Typically, cleanup happens when the stream needs to release resources. For example, a stream might need to close an open file (as an asynchronous operation). If the listener wants to delete the file after having canceled the subscription, it must wait for the cleanup future to complete. If the cleanup throws, which it really shouldn't, the returned future completes with that error." />
<item value="cancel" />
<item value="reactive" />
<item value="subscription" />
<item value="Missing or insufficient permissions" />
<item value="Notifies of document updates at this location. An initial event is immediately sent, and further events will be sent whenever the document is modified." />
<item value="Pop the top-most route off the navigator. {@macro flutter.widgets.navigator.pop} {@tool snippet} Typical usage for closing a route is as follows: ```dart void _handleClose() { navigator.pop(); } ``` {@end-tool} {@tool snippet} A dialog box might be closed with a result: ```dart void _handleAccept() { navigator.pop(true); dialog returns true } ``` {@end-tool} @optionalTypeArgs" />
<item value="Whether the navigator can be popped. {@macro flutter.widgets.navigator.canPop} See also: [Route.isFirst], which returns true for routes for which [canPop] returns false." />
<item value="Consults the current route's [Route.willPop] method, and acts accordingly, potentially popping the route as a result; returns whether the pop request should be considered handled. {@macro flutter.widgets.navigator.maybePop} See also: [Form], which provides an `onWillPop` callback that enables the form to veto a [pop] initiated by the app's back button. [ModalRoute], which provides a `scopedWillPopCallback` that can be used to define the route's `willPop` method." />
<item value="forget about this pop, we were disposed in the meantime" />
<item value="moment Click Notification Icon" />
<item value="Opacity Button" />
<item value="操产品经理" />
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE" value="144" />
<entry key="ENGLISH" value="145" />
<entry key="FRENCH" value="1" />
</map>
</option>
</component>
<component name="Cache">
<option name="lastTrimTime" value="1657512448557" />
</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="translateDocumentation" value="true" />
</component>
</application>