Last active
November 6, 2022 23:03
-
-
Save chamatt/17c2aa78b78968ca31d8fe2204aaef6d to your computer and use it in GitHub Desktop.
Expo-router utility to set options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { WithNavigation } from 'WithNavigation' | |
const HomeScreen = () => { | |
return ( | |
<div> Some Content </div> | |
) | |
} | |
export default WithNavigation(HomeScreen, { | |
type: 'stack', | |
options: { | |
title: 'Home Screen', | |
}, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment