Today I Learned

hashrocket A Hashrocket project

Linear Gradient in React Native

So far, there is no official implementation for linear gradients in React Native but there is a really cool open source component that implements that for both platforms: Android and iOS.

Check it out react-native-linear-gradient

<LinearGradient
  colors={['#F00', 'transparent']}
/>
See More #mobile TILs