2016-12-28 46 views

回答

0

我找到了一個解決方案。

當使用popToTop時,會顯示推送的最後路線的相反場景轉換。推動最後一個路線的場景轉換將改變popToTop動畫。

對於爲例,與naviagator.replaceAtIndex(route, index, cb),可以取代過去推路線場景轉換屬性:

const routes = navigator.getCurrentRoutes(); 
const indexToReplace = routes.length - 1; 
var newRoute = routes[indexToReplace]; 

newRoute.sceneConfig = Navigator.SceneConfigs.FloatFromLeft; 

navigator.replaceAtIndex(newRoute, indexToReplace,() => navigator.popToTop()); 
相關問題