We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 116dd86 commit 34fed39Copy full SHA for 34fed39
src/bottomnavigationbar/bottomnavigationbar.ios.ts
@@ -140,11 +140,7 @@ export class BottomNavigationBar extends BottomNavigationBarBase {
140
return tab;
141
});
142
this.nativeViewProtected.items = new NSArray({ array: bottomNavigationTabs });
143
-
144
- // TODO: this is for he v8 runtime. Should not have to need this setTimeout(), find better way.
145
- setTimeout(() => {
146
- this.nativeViewProtected.selectedItem = this.nativeViewProtected.items[this.selectedTabIndex];
147
- }, 0);
+ this.nativeViewProtected.selectedItem = this.nativeViewProtected.items[this.selectedTabIndex];
148
}
149
150
protected selectTabNative(index: number): void {
0 commit comments