File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ export class Tabs extends TabNavigation<TabsBar> {
8787 protected override setTabBarItems ( tabItems : com . nativescript . material . core . TabItemSpec [ ] ) {
8888 this . mTabsBar . setItems ( tabItems ) ;
8989 // The setTimeout below is necessary to ensure the scrollToTab is executed only after
90- // all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
90+ // all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
9191 //
92- // The setTimeout is necessary to fix an Android issue:
92+ // The setTimeout is necessary to fix an Android issue:
9393 // Android Issue: Active Tab item not displaying after nav back
9494 // Reproduce steps:
9595 // 1. On app with multiple (overflown) tab items, Switch to the last tab item
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ declare module '@nativescript/core/ui/text-field' {
123123export class TextField extends TextFieldBase {
124124 nativeViewProtected : MDCBaseTextField ;
125125 nativeTextViewProtected : MDCBaseTextField ;
126+ //@ts -ignore
126127 public readonly style : Style & { variant : 'outline' | 'underline' | 'filled' } ;
127128 public nsdigits ?: NSCharacterSet ;
128129 firstEdit : boolean ;
Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ export class TextView extends TextViewBase {
154154 nativeViewProtected : MDCMultilineTextField ;
155155 private _controller : MDCTextInputControllerBase ;
156156 public _isEditing : boolean ;
157+ //@ts -ignore
157158 public readonly style : Style & { variant : 'outline' | 'underline' | 'filled' } ;
158159
159160 public clearFocus ( ) {
You can’t perform that action at this time.
0 commit comments