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
export default function RootLayout() { | |
return ( | |
<Stack> | |
<Stack.Screen | |
name="(drawer)" | |
options={{ | |
headerShown: false, | |
}} | |
/> | |
<Stack.Screen |
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
#!/bin/zsh | |
# Expo Server Manager - Prompts to kill existing port 8081 process before starting Expo dev server | |
# | |
# Setup: | |
# 1. Save this file to ~/.expo-server-manager.sh | |
# 2. Add to ~/.zshrc: source ~/.expo-server-manager.sh | |
# 3. Add aliases: | |
# alias es='start_expo false' | |
# alias esc='start_expo true' |
OlderNewer