UNPKG

react-native-navigation

Version:

React Native Navigation - truly native navigation for iOS and Android

12 lines (9 loc) 291 B
import ParentNode from './ParentNode'; export default class StackNode extends ParentNode { constructor(layout: any, parentNode?: ParentNode) { super(layout, 'Stack', parentNode); } getVisibleLayout() { return this.children[this.children.length - 1].getVisibleLayout(); } }