Version: 1.x.xLayoutA basic button component that should render nicely on any platform. Supports a minimal level of customization.import { Layout } from 'react-native-noxi'; <Layout title="ExampleLayout" canGoBack enabledPullToRefresh={true} refreshing={refreshing} onRefresh={onRefresh} containerStyle={{ flexGrow: 1, padding: 8 }} onPressBackIcon={() => navigation.goBack()} > </Layout>CopyExample#