Bläddra i källkod

Update v1tov2diff.md

Daniel Zlotin 8 år sedan
förälder
incheckning
c16d3dcd0f
1 ändrade filer med 5 tillägg och 5 borttagningar
  1. 5
    5
      v1tov2diff.md

+ 5
- 5
v1tov2diff.md Visa fil

46
 |---------------------|--------|------------|
46
 |---------------------|--------|------------|
47
 | push                |  ✅     |   ✅       |
47
 | push                |  ✅     |   ✅       |
48
 | pop                 |  ✅     |  ✅        |
48
 | pop                 |  ✅     |  ✅        |
49
-| showModal           |  ✅     |  ✅ Only iOS  |
49
+| showModal           |  ✅     |  ✅ Only iOS [Contribute](CONTRIBUTING.md)   |
50
 | popToRoot           |   ✅     |   ✅         |
50
 | popToRoot           |   ✅     |   ✅         |
51
 | resetTo             |   ✅     |    [Contribute](CONTRIBUTING.md)      |
51
 | resetTo             |   ✅     |    [Contribute](CONTRIBUTING.md)      |
52
-| dismissModal        |   ✅     |     ✅  Only iOS     |
53
-| dismissAllModals    |   ✅     |      ✅   Only iOS   |
52
+| dismissModal        |   ✅     |     ✅  Only iOS [Contribute](CONTRIBUTING.md)     |
53
+| dismissAllModals    |   ✅     |      ✅   Only iOS  [Contribute](CONTRIBUTING.md)  |
54
 | showLightBox        |   ✅     |      [Contribute](CONTRIBUTING.md)      |
54
 | showLightBox        |   ✅     |      [Contribute](CONTRIBUTING.md)      |
55
 | dismissLightBox     |   ✅     |       [Contribute](CONTRIBUTING.md)       |
55
 | dismissLightBox     |   ✅     |       [Contribute](CONTRIBUTING.md)       |
56
 | handleDeepLink      |   ✅     |       [Contribute](CONTRIBUTING.md)       |
56
 | handleDeepLink      |   ✅     |       [Contribute](CONTRIBUTING.md)       |
64
 | toggleNavBar        |   ✅     |      [Contribute](CONTRIBUTING.md)      |
64
 | toggleNavBar        |   ✅     |      [Contribute](CONTRIBUTING.md)      |
65
 | Screen Visibility   |   ✅     |       ✅     |
65
 | Screen Visibility   |   ✅     |       ✅     |
66
 
66
 
67
-Element tranisitions, adding buttons and styles are not supported yet.  
67
+Element tranisitions, adding buttons and styles are not yet implemented. [Contribute](CONTRIBUTING.md) 
68
 
68
 
69
 ## Getting started with v2
69
 ## Getting started with v2
70
 If v2 supports everything you need for your app we encourage you to use it.
70
 If v2 supports everything you need for your app we encourage you to use it.
185
   });
185
   });
186
 ```
186
 ```
187
 
187
 
188
-#### registerContainer(screenID, generator, store = undefined, Provider = undefined)
188
+#### registerContainer(screenID, generator)
189
 Every screen component in your app must be registered with a unique name. The component itself is a traditional React component extending React.Component.
189
 Every screen component in your app must be registered with a unique name. The component itself is a traditional React component extending React.Component.
190
 ```js
190
 ```js
191
 Navigation.registerContainer(`navigation.playground.WelcomeScreen`, () => WelcomeScreen);
191
 Navigation.registerContainer(`navigation.playground.WelcomeScreen`, () => WelcomeScreen);