소스 검색

Send bottomTabSelectedEvent before switching tab

fixes #2711
Guy Carmeli 6 년 전
부모
커밋
e0b57e9aa6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      android/app/src/main/java/com/reactnativenavigation/layouts/BottomTabsLayout.java

+ 1
- 1
android/app/src/main/java/com/reactnativenavigation/layouts/BottomTabsLayout.java 파일 보기

@@ -479,8 +479,8 @@ public class BottomTabsLayout extends BaseLayout implements AHBottomNavigation.O
479 479
         }
480 480
 
481 481
         final int unselectedTabIndex = currentStackIndex;
482
-        switchTab(position, NavigationType.BottomTabSelected);
483 482
         sendTabSelectedEventToJs(position, unselectedTabIndex);
483
+        switchTab(position, NavigationType.BottomTabSelected);
484 484
         return true;
485 485
     }
486 486