The fantastic Tailwind CSS, for React Native!
Credit to Taylor Bryant for originally translating the classes over to RN.
yarn install react-native-tailwind
import { View, Text } from 'react-native-tailwind'
const RocketShip = ({ textForAliens }) => (
<View className="flex-1 items-center justify-center bg-grey-darkest">
<Text className="text-white p-4">{textForAliens}</Text>
</View>
)
To see which classes are supported, see tailwind.js.