Skip to content

Instantly share code, notes, and snippets.

@brunosabot
Created September 12, 2020 10:01
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 brunosabot/091ade8b1c4ba353700e75462f0573ca to your computer and use it in GitHub Desktop.
Save brunosabot/091ade8b1c4ba353700e75462f0573ca to your computer and use it in GitHub Desktop.
import React from "react";
import { Text, View } from "react-native";
export default function Styling() {
return (
<View style={{ backgroundColor: "rgb(255, 192, 16)" }}>
<Text style={{ color: "rgba(48, 48, 48)" }}>Hello world</Text>
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment