Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created February 24, 2020 00:33
Show Gist options
  • Select an option

  • Save BrooklinJazz/0a0992028ab2f8813293d0e7699b35ca to your computer and use it in GitHub Desktop.

Select an option

Save BrooklinJazz/0a0992028ab2f8813293d0e7699b35ca to your computer and use it in GitHub Desktop.
String as child of TouchableOpacity
import {TouchableOpacity, Text} from "react-native";
// the following will fail because a string is not a valid child for the TouchableOpacity component.
<TouchableOpacity>Start</TouchableOpacity>
// You must wrap strings in a Text component in react native
<TouchableOpacity><Text>Start</Text></TouchableOpacity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment