<itemvalue="<!-- Constrains the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key. The default value is false (multi-line wrapped text mode) for non-editable text, but if you specify any value for inputType, the default is true (single-line input field mode). {@deprecated This attribute is deprecated. Use <code>maxLines<code> instead to change the layout of a static text, and use the <code>textMultiLine<code> flag in the inputType attribute instead for editable text views (if both singleLine and inputType are supplied, the inputType flags will override the value of singleLine). } -->"/>
<itemvalue="design game res model"/>
<itemvalue="Expands each element of this [Iterable] into zero or more elements. The resulting Iterable runs through the elements returned by [toElements] for each element of this, in iteration order. The returned [Iterable] is lazy, and calls [toElements] for each element of this iterable every time the returned iterable is iterated. Example: ```dart Iterable<int> count(int n) sync { for (var i = 1; i <= n; i++) { yield i; } } var numbers = [1, 3, 0, 2]; print(numbers.expand(count)); (1, 1, 2, 3, 1, 2) ``` Equivalent to: ``` Iterable<T> expand<T>(Iterable<T> toElements(E e)) sync { for (var value in this) { yield toElements(value); } } ```"/>
<itemvalue="expand"/>
@ -57,12 +58,11 @@
<itemvalue="TYPE RECHARGE"/>
<itemvalue="TYPE MUTE"/>
<itemvalue="register To Shark"/>
<itemvalue="[fix] show change phone option only when login status."/>