From b88ba2c918c2e4283967455fece9cad5f0f0b2fa Mon Sep 17 00:00:00 2001 From: Pavel Aksonov Date: Fri, 20 May 2016 11:45:54 +0200 Subject: [PATCH] Update MIGRATION.md --- docs/MIGRATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/MIGRATION.md b/docs/MIGRATION.md index 7f8a0aab4..9dad0546a 100644 --- a/docs/MIGRATION.md +++ b/docs/MIGRATION.md @@ -1,7 +1,7 @@ # Migrating from 2.x ## Breaking changes comparing with 2.x version: -- React Native 0.22 is required +- React Native 0.26 is required - `Router` is root container now and should not be nested. For nested scenes you should use `Scene` element - `Route` became `Scene`, now unique `key` attribute is required for each scene (it was `name` attribute before) - Define all your scenes on top-level, not within `Router` as before (see Example) @@ -10,4 +10,4 @@ - Custom scene renderers are used instead of 'custom' types (like 'modal'), so 'modal' scenes are pushed as usual, but custom renderer will render them as popup. No `dismiss`, just usual `pop` to close such popups. - No old navigator.sceneConfig support (instead the component uses React Native NavigationAnimatedView for better transitions) - No onPush/onPop/etc handlers because they are not needed now. If navigation state is changed, container will be re-rendered with changed navigationState property, see `Modal` as Example. -- No header/footer properties are supported for Scene currently - you may include them into Scene component. \ No newline at end of file +- No header/footer properties are supported for Scene currently - you may include them into Scene component.