Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improves the copy for the new app screen #24918

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Libraries/NewAppScreen/components/LearnMoreLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@ const links = [
{
title: 'The Basics',
link: 'https://facebook.github.io/react-native/docs/tutorial',
description:
'Read the docs on what to do once seen how to work in React Native.',
description: 'Explains a Hello World for React Native.',
},
{
title: 'Style',
link: 'https://facebook.github.io/react-native/docs/style',
description: 'All of the core components accept a prop named style.',
description:
'Covers how to use the prop named style which controls the visuals.',
},
{
title: 'Layout',
link: 'https://facebook.github.io/react-native/docs/flexbox',
description:
'A component can specify the layout of its children using the flexbox specification.',
description: 'React Native uses flexbox for layout, learn how it works.',
},
{
title: 'Components',
Expand Down
4 changes: 2 additions & 2 deletions Libraries/NewAppScreen/components/ReloadInstructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const ReloadInstructions = Platform.select({
ios: () => (
<Text>
Press <Text style={styles.highlight}>Cmd+R</Text> in the simulator to
reload your app's code
reload your app's code.
</Text>
),
default: () => (
<Text>
Double tap <Text style={styles.highlight}>R</Text> on your keyboard to
reload your app's code
reload your app's code.
</Text>
),
});
Expand Down
3 changes: 1 addition & 2 deletions template/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ const App = () => {
<View style={styles.sectionContainer}>
<Text style={styles.sectionTitle}>Learn More</Text>
<Text style={styles.sectionDescription}>
Read the docs on what to do once seen how to work in React
Native.
Read the docs to discover what to do next:
</Text>
</View>
<LearnMoreLinks />
Expand Down