react-native-navigation
Version:
React Native Navigation - truly native navigation for iOS and Android
12 lines (11 loc) • 326 B
JavaScript
;
import ParentNode from "./ParentNode.js";
export default class StackNode extends ParentNode {
constructor(layout, parentNode) {
super(layout, 'Stack', parentNode);
}
getVisibleLayout() {
return this.children[this.children.length - 1].getVisibleLayout();
}
}
//# sourceMappingURL=StackNode.js.map