From 6575f06b9b0098ebadb4681e97be4e3df07ed63e Mon Sep 17 00:00:00 2001 From: Joshua Marantz Date: Thu, 15 Mar 2018 11:39:53 -0400 Subject: [PATCH] WIP: migration guide for DefaultRenderer 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