по условию в зависимости от экрана выводить контент
react-navigation + хуки
Через ref можно
function getCurrentRoute(nav = navigator.state.nav): RouteNames { if (!isEmpty(nav.routes)) { return getCurrentRoute(nav.routes[nav.index]); } return nav.routeName; } getCurrentRoute() == 'routeName'
Обсуждают сегодня