📜  反应原生背景渐变 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:35.292000             🧑  作者: Mango

代码示例2
import LinearGradient from 'react-native-linear-gradient'; // Within your render function      Sign in with Facebook   // 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',  },});