Ver código fonte

Fix BottomTabs documentation

title was renamed to text
Guy Carmeli 6 anos atrás
pai
commit
b858b34548
2 arquivos alterados com 4 adições e 4 exclusões
  1. 2
    2
      docs/docs/layout-types.md
  2. 2
    2
      docs/docs/top-level-api.md

+ 2
- 2
docs/docs/layout-types.md Ver arquivo

@@ -48,7 +48,7 @@ const bottomTabs = {
48 48
         children: [],
49 49
         options: {
50 50
           bottomTab: {
51
-            title: 'Tab 1',
51
+            text: 'Tab 1',
52 52
             icon: require('../images/one.png')
53 53
           }
54 54
         }
@@ -59,7 +59,7 @@ const bottomTabs = {
59 59
         name: 'secondTabScreen',
60 60
         options: {
61 61
           bottomTab: {
62
-            title: 'Tab 2',
62
+            text: 'Tab 2',
63 63
             icon: require('../images/two.png')
64 64
           }
65 65
         }

+ 2
- 2
docs/docs/top-level-api.md Ver arquivo

@@ -23,7 +23,7 @@ Navigation.setRoot({
23 23
           }],
24 24
           options: {
25 25
             bottomTab: {
26
-              title: 'Tab 1',
26
+              text: 'Tab 1',
27 27
               icon: require('../images/one.png'),
28 28
               testID: 'FIRST_TAB_BAR_BUTTON'
29 29
             }
@@ -38,7 +38,7 @@ Navigation.setRoot({
38 38
           },
39 39
           options: {
40 40
             bottomTab: {
41
-              title: 'Tab 2',
41
+              text: 'Tab 2',
42 42
               icon: require('../images/two.png'),
43 43
               testID: 'SECOND_TAB_BAR_BUTTON'
44 44
             }