Horje
react native background gradient Code Example
react native background gradient
npx expo install expo-linear-gradient
linear gradient react native
import LinearGradient from 'react-native-linear-gradient'; // Within your render function<LinearGradient colors={['#4c669f', '#3b5998', '#192f6a']} style={styles.linearGradient}>  <Text style={styles.buttonText}>    Sign in with Facebook  </Text></LinearGradient> // Later on in your styles..var styles = StyleSheet.create({  linearGradient: {    flex: 1,    paddingLeft: 15,    paddingRight: 15,    borderRadius: 5  },  buttonText: {    fontSize: 18,    fontFamily: 'Gill Sans',    textAlign: 'center',    margin: 10,    color: '#ffffff',    backgroundColor: 'transparent',  },});




Shell

Related
dpkg get installed package version Code Example dpkg get installed package version Code Example
boucle bash Code Example boucle bash Code Example
command line csv parser Code Example command line csv parser Code Example
change default php alternatives Code Example change default php alternatives Code Example
aws credentials file location ubuntu Code Example aws credentials file location ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16