Version: Next

Layout

A 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>

Example#