UNPKG

@fto-consult/expo-ui

Version:

Bibliothèque de composants UI Expo,react-native

27 lines (23 loc) • 676 B
import {SIGN_IN} from "$cauth/routes" import Screen from "$escreen"; import Login from "$eauth/Login"; import {getTitle} from "./utils"; function AuthSignInScreen(props){ const title = getTitle(); return <Screen title = {title} appBarProps = {{ title,backAction:false }} contentContainerStyle = {{justifyContent:'center',alignItems:'center'}} > <Login {...props} /> </Screen> } AuthSignInScreen.screenName = SIGN_IN; AuthSignInScreen.authRequired = false; AuthSignInScreen.modal = true; AuthSignInScreen.allowDrawer = false; export default AuthSignInScreen;