Skip to content

Instantly share code, notes, and snippets.

@yaralahruthik
Created January 4, 2022 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaralahruthik/09fe128fafa4d8f8d84614a0c3025e68 to your computer and use it in GitHub Desktop.
Save yaralahruthik/09fe128fafa4d8f8d84614a0c3025e68 to your computer and use it in GitHub Desktop.
import React from "react";
import { StyleSheet, Text, View } from "react-native";
const App = () => (
<View style={styles.container}>
<Text style={styles.title}>Hello World!</Text>
</View>
);
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 24,
backgroundColor: "#eaeaea"
},
title: {
marginTop: 16,
paddingVertical: 8,
backgroundColor: "#ffffff",
color: "#000000",
textAlign: "center",
fontSize: 16,
}
});
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment