소스 검색

Add title to e2e screen for testing purposes

Guy Carmeli 6 년 전
부모
커밋
0fa462c0bd
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11
    0
      playground/src/screens/complexlayouts/BottomTabSideMenuScreen.js

+ 11
- 0
playground/src/screens/complexlayouts/BottomTabSideMenuScreen.js 파일 보기

@@ -5,6 +5,16 @@ const { Navigation } = require('react-native-navigation');
5 5
 const testIDs = require('../../testIDs');
6 6
 
7 7
 class BottomTabSideMenuScreen extends Component {
8
+  static get options() {
9
+    return {
10
+      topBar: {
11
+        title: {
12
+          text: 'test',
13
+        }
14
+      }
15
+    }
16
+  }
17
+
8 18
   onOpenSideMenuPress = () => {
9 19
     Navigation.mergeOptions(this.props.componentId, {
10 20
       sideMenu: {
@@ -14,6 +24,7 @@ class BottomTabSideMenuScreen extends Component {
14 24
       }
15 25
     });
16 26
   }
27
+
17 28
   render() {
18 29
     return (
19 30
       <View style={styles.root}>