import React, { Component, View, Text } from 'react-native'; import { FillLayout, Top, Left, Right, Bottom } from './lib/BorderLayout'; import Center from './lib/Center'; import Overlay from './lib/Overlay'; export default class BorderLayoutExample3 extends Component { constructor() { super(); this.state = { overlay: false }; } render() { const { overlay } = this.state; return (
Hallo
Navigation 1 Navigation 2 Navigation 3 Sidebar Click here! { overlay && } { overlay &&
Hello Overlay! More content in the second line! OK
}
); } }