From c76fc5df9030875e62825a157a6c092d82e907c8 Mon Sep 17 00:00:00 2001 From: Joshua Marantz Date: Wed, 8 Aug 2018 08:57:59 -0400 Subject: [PATCH] WIP: migration guide for DefaultRenderer (#2941) 4.x appears to no longer export DefaultRenderer, at least not under the same name. The migration guide should probably mention that. Ideally it would also explain what to replace it with, but I don't know what should be the replacement --- docs/MIGRATION.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/MIGRATION.md b/docs/MIGRATION.md index 9493ffd24..ebe826216 100644 --- a/docs/MIGRATION.md +++ b/docs/MIGRATION.md @@ -14,6 +14,7 @@ https://github.com/react-community/react-navigation/issues/1493 * No `direction` attribute is supported for custom transitions. For vertical transition add `modal` to parent `Scene`. * tabBarSelectedItemStyle is not supported. Instead please use React Navigation TabBar params for tabs Scene: `activeTintColor`, `inactiveTintColor`, etc (https://reactnavigation.org/docs/navigators/tab) * To make multiple pops you could use `Actions.popTo(sceneName)` where sceneName is name of scene you want to see (it should be not container, i.e. scene with `component`) +* No longer exports DefaultRenderer * Possible other stuff... Check Example project for this repository