In React Native for writing text we have to use Text tag ex:<Text>HELLO</TEXT>
Like all other tags, we have to use
import React from 'react'; import { View, Text, Button } from 'react-native'; const App = () => ( <View> <Text style={{ margin: 64 }}> First Video Done </Text> <Button title="Press"/> </View> ); export default App;