소스 검색

Disable hide BottomTabs on scroll

Originally PR'd in #5338 but since the diff was too big I'm committing it here.
Guy Carmeli 5 년 전
부모
커밋
7688196481
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      lib/android/app/src/main/java/com/reactnativenavigation/views/BottomTabs.java

+ 1
- 0
lib/android/app/src/main/java/com/reactnativenavigation/views/BottomTabs.java 파일 보기

@@ -23,6 +23,7 @@ public class BottomTabs extends AHBottomNavigation {
23 23
     public BottomTabs(Context context) {
24 24
         super(context);
25 25
         setId(R.id.bottomTabs);
26
+        setBehaviorTranslationEnabled(false);
26 27
         if (BuildConfig.DEBUG) setContentDescription("BottomTabs");
27 28
     }
28 29