import React from "react";
import { StyleSheet, Text, View } from "react-native";

const styles = StyleSheet.create({
  layout: {
    backgroundColor: "rgb(255, 192, 16)",
    paddingLeft: 8,
    paddingRight: 8,
  },
  wrapper: {
    padding: 16,
  },
  text: {
    color: "rgba(48, 48, 48)"
  }
});

export default function Styling() {
  return (
    <View style={styles.layout}>
      <View style={styles.wrapper}>
        <Text style={styles.text}>Hello world</Text>
      </View>
    </View>
  );
}