Skip to content

Commit

Permalink
style: 컬러코드 변경사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ww8007 committed May 6, 2023
1 parent 7f37cbc commit 0358740
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions components/EditScreenInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,40 @@ export default function EditScreenInfo({ path }: { path: string }) {
<Text
style={styles.getStartedText}
lightColor="rgba(0,0,0,0.8)"
darkColor="rgba(255,255,255,0.8)">
darkColor="rgba(255,255,255,0.8)"
>
Open up the code for this screen:
</Text>

<View
style={[styles.codeHighlightContainer, styles.homeScreenFilename]}
darkColor="rgba(255,255,255,0.05)"
lightColor="rgba(0,0,0,0.05)">
lightColor="rgba(0,0,0,0.05)"
>
<MonoText>{path}</MonoText>
</View>

<Text
style={styles.getStartedText}
lightColor="rgba(0,0,0,0.8)"
darkColor="rgba(255,255,255,0.8)">
Change any of the text, save the file, and your app will automatically update.
darkColor="rgba(255,255,255,0.8)"
>
Change any of the text, save the file, and your app will automatically
update.
</Text>
</View>

<View style={styles.helpContainer}>
<ExternalLink
style={styles.helpLink}
href="https://docs.expo.io/get-started/create-a-new-app/#opening-the-app-on-your-phonetablet">
<Text style={styles.helpLinkText} lightColor={Colors.light.tint}>
Tap here if your app doesn't automatically update after making changes
href="https://docs.expo.io/get-started/create-a-new-app/#opening-the-app-on-your-phonetablet"
>
<Text
style={styles.helpLinkText}
lightColor={Colors.light.background}
>
Tap here if your app doesn't automatically update after making
changes
</Text>
</ExternalLink>
</View>
Expand Down

0 comments on commit 0358740

Please sign in to comment.