<itemvalue="Appends up to four conic curves weighted to describe an oval of `radius` and rotated by `rotation`. The first curve begins from the last point in the path and the last ends at `arcEnd`. The curves follow a path in a direction determined by `clockwise` and `largeArc` in such a way that the sweep angle is always less than 360 degrees. A simple line is appended if either either radii are zero or the last point in the path is `arcEnd`. The radii are scaled to fit the last path point if both are greater than zero but too small to describe an arc." />
<itemvalue="s" />
<itemvalue="arc To Point" />
<itemvalue="fa" />
<itemvalue="un Processable Entity" />
<itemvalue="readonly" />
<itemvalue="trampoline" />
<itemvalue="'Focus.of() was called with a context that does not contain a Focus between the given ' 'context and the nearest FocusScope widget.\n' 'No Focus ancestor could be found starting from the context that was passed to ' 'Focus.of() to the point where it found the nearest FocusScope widget. This can happen ' 'because you are using a widget that looks for a Focus ancestor, and do not have a ' 'Focus widget ancestor in the current FocusScope.\n' 'The context used was:\n'" />
<itemvalue="Pivot tables guard against ambiguous fields by excluding tables that have already been queried in this scope." />
<itemvalue="Focus.of() was called with a context that does not contain a Focus between the given context and the nearest FocusScope widget." />
<itemvalue="reserve Name" />
<itemvalue="自动计算可用的下拉框选项" />
<itemvalue="adorn With Table Name" />
<itemvalue="sp unit text scale issue." />
<itemvalue="deprecated" />
<itemvalue="Fix for" />
<itemvalue="Query" />
<itemvalue="implicit" />
<itemvalue="include Annotations" />
<itemvalue="casts" />
<itemvalue="severe" />
<itemvalue="Note: When compiling to JavaScript, integers are restricted to values that can be represented exactly by double-precision floating point values. The available integer values include all integers between -2^53 and 2^53, and some integers with larger magnitude. That includes some integers larger than 2^63." />
<itemvalue="negative Button" />
<itemvalue="获取下一个可用手势" />
<itemvalue="implement some api; add md editor to app; login and signup for app." />
<itemvalue="paste" />
<itemvalue="negative Button Title" />
<itemvalue="make built_in commands support i18n." />
<itemvalue="positive Button Title" />
<itemvalue="Show Window" />
<itemvalue="Get value stored in this cache entry. If used without [create], this function simply gets the value or `null` if no value is stored. If used with [create], this function becomes an upsert, returning the value stored if any, otherwise creating a new value and storing it with optional [ttl]. If multiple callers are using the same cache this is an inherently racy operation, that is multiple instances of the value may be created. The [get] method is a best-effort method. In case of intermittent failures from the underlying [CacheProvider] the [get] method will ignore failures and return `null` (or result from [create] if specified)." />
<itemvalue="Minimize" />
<itemvalue="bad Request" />
<itemvalue="Toggle Maximize" />
<itemvalue="unauthorized" />
<itemvalue="Handle 4 Or 5 Fingers Swipe Up" />
<itemvalue="payment Required" />
<itemvalue="Show Workspace" />
<itemvalue="forbidden" />
<itemvalue="shortcut keycode map completed." />
<itemvalue="method Not Allowed" />
<itemvalue="I don't think need implement those keys" />
<itemvalue="not Acceptable" />
<itemvalue="I don't think should implement those keys" />
<itemvalue="proxy Authentication Required" />
<itemvalue="not implements on linux" />
<itemvalue="conflict" />
<itemvalue="Spreadsheet" />
<itemvalue="precondition Failed" />
<itemvalue="Contacts" />
<itemvalue="request Entity Too Large" />
<itemvalue="seems only works on mobile." />
<itemvalue="request Uri Too Long" />
<itemvalue="seams only works on mobile." />
<itemvalue="unsupported Media Type" />
<itemvalue="Illum" />
<itemvalue="requested Range Not Satisfiable" />
<itemvalue="Too dangerous ..." />
<itemvalue="expectation Failed" />
<itemvalue="numpad Decimal" />
<itemvalue="render" />
<itemvalue="comma" />
<itemvalue="exclude" />
<itemvalue="asterisk" />
<itemvalue="can Serialize" />
<itemvalue="parenthesis Left" />
<itemvalue="can Deserialize" />
<itemvalue="quote Single" />
<itemvalue="Attempts to authenticate a user using one or more strategies. [type] is a strategy name to try, or a `List` of such. If a strategy returns `null` or `false`, either the next one is tried, or a `401 Not Authenticated` is thrown, if it is the last one. Any other result is considered an authenticated user, and terminates the loop." />
<itemvalue="ampersand" />
<itemvalue="authenticate" />
<itemvalue="number Sign" />
<itemvalue="Configures an Angel server to decode and validate JSON Web tokens on demand, whenever an instance of [User] is injected." />
<itemvalue="exclam" />
<itemvalue="Strategy" />
<itemvalue="exclamation" />
<itemvalue="Backdrop Filter" />
<itemvalue="Returns an object representing the logical key that was pressed. {@template flutter.services.RawKeyEvent.logicalKey} This method takes into account the key map and modifier keys (like SHIFT) to determine which logical key to return. If you are looking for the character produced by a key event, use [RawKeyEvent.character] instead. If you are collecting text strings, use the [TextField] or [CupertinoTextField] widgets, since those automatically handle many of the complexities of managing keyboard input, like showing a soft keyboard or interacting with an input method editor (IME). {@endtemplate}" />
<itemvalue="change api framework to angel3." />
<itemvalue="Represents the logical "Lang 1" key on the keyboard. See the function [RawKeyEvent.logicalKey] for more information." />
<itemvalue="Shows a platform alert dialog with custom button titles. You can assign up to 3 buttons in the alert dialog. The method follows the convention on Android. [positiveButtonTitle] is the title of the positive button like for "OK" or "Yes", [negativeButtonTitle] is the title for the negative button like "Cancel" or "No", while [neutralButtonTitle] is for other buttons." />
<itemvalue="A list of all the predefined constant PhysicalKeyboardKeys so that they can be searched." />
<itemvalue="confirmed" />
<itemvalue="skicky" />
<itemvalue="neutral Button Title" />
<itemvalue="A widget that manages a [FocusNode] to allow keyboard focus to be given to this widget and its descendants. When the focus is gained or lost, [onFocusChange] is called. For keyboard events, [onKey] is called if [FocusNode.hasFocus] is true for this widget's [focusNode], unless a focused descendant's [onKey] callback returns [KeyEventResult.handled] when called. This widget does not provide any visual indication that the focus has changed. Any desired visual changes should be made when [onFocusChange] is called. To access the [FocusNode] of the nearest ancestor [Focus] widget and establish a relationship that will rebuild the widget when the focus changes, use the [Focus.of] and [FocusScope.of] static methods. To access the focused state of the nearest [Focus] widget, use [FocusNode.hasFocus] from a build method, which also establishes a relationship between the calling widget and the [Focus] widget that will rebuild the calling widget when the focus changes. Managing a [FocusNode] means managing its lifecycle, listening for changes in focus, and re-parenting it when needed to keep the focus hierarchy in sync with the widget hierarchy. This widget does all of those things for you. See [FocusNode] for more information about the details of what node management entails if you are not using a [Focus] widget and you need to do it yourself. To collect a sub-tree of nodes into an exclusive group that restricts focus traversal to the group, use a [FocusScope]. To collect a sub-tree of nodes into a group that has a specific order to its traversal but allows the traversal to escape the group, use a [FocusTraversalGroup]. To move the focus, use methods on [FocusNode] by getting the [FocusNode] through the [of] method. For instance, to move the focus to the next node in the focus traversal order, call `Focus.of(context).nextFocus()`. To unfocus a widget, call `Focus.of(context).unfocus()`. {@tool dartpad --template=stateful_widget_scaffold} This example shows how to manage focus using the [Focus] and [FocusScope] widgets. See [FocusNode] for a similar example that doesn't use [Focus] or [FocusScope]." />
<itemvalue="positive Button" />
<itemvalue="LayoutBuilder does not support returning intrinsic dimensions." />
<itemvalue="Notificator" />
<itemvalue="壮举:避免 Cardio Plus 设备 连接到此应用" />
<itemvalue="use 'fromMarket' and 'uploaded' flag instead of 'readOnly'; clean code." />
<itemvalue="壮举:避免 Cardio Plus 设备 连接到此应用程序" />
<itemvalue="use 'fromMarket' and 'uploaded' flag instead of 'readOnly'; code clean." />
<itemvalue="壮举:避免 Cardio Plus 设备 连接到此应用程序的 " />
<itemvalue="Removes the topmost Flutter instance, presenting what was before it. On Android, removes this activity from the stack and returns to the previous activity. On iOS, calls `popViewControllerAnimated:` if the root view controller is a `UINavigationController`, or `dismissViewControllerAnimated:completion:` if the top view controller is a `FlutterViewController`. The optional `animated` parameter is ignored on all platforms except iOS where it is an argument to the aforementioned methods. This method should be preferred over calling `dart:io`'s [exit] method, as the latter may cause the underlying platform to act as if the application had crashed." />
<itemvalue="壮举:避免 Cardio Plus 设备。" />
<itemvalue="remove support for WeCardioUNPlus device." />