The fantastic Tailwind CSS, for React Native!
yarn add react-native-tailwind
import { View, Text } from "react-native-tailwind";
const RocketShip = ({ textForAliens }) => (
<View className="flex-1 items-center justify-center bg-gray-200">
<Text className="text-white p-4">{textForAliens}</Text>
</View>
);
To see which classes are supported, see tailwind.js.