React Native 之 Text 文字添加阴影效果

前端之家收集整理的这篇文章主要介绍了React Native 之 Text 文字添加阴影效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6.  
  7. import React,{ Component } from 'react';
  8. import {
  9. AppRegistry,StyleSheet,Image,Text,TouchableHighlight,View
  10. } from 'react-native';
  11.  
  12. export default class ViewProject extends Component {
  13. render() {
  14. return (
  15. <View style={styles.container}>
  16. <Text style={styles.baseStyle}>
  17. 我是60号字体
  18. <Text style={{fontWeight:'800'}}>
  19. {'\r\n'}我是加粗60号字体
  20. </Text>
  21. </Text>
  22. </View>
  23. );
  24. }
  25. }
  26.  
  27. const styles = StyleSheet.create({
  28. container: {
  29. flex:1,justifyContent: 'center',alignItems:'center',backgroundColor:'white',},baseStyle:{
  30. fontSize:60,textAlign:'center',color:'black',textShadowOffset:{width:5,hegith:5},textShadowRadius:2,textShadowColor:'grey'
  31. }
  32. });
  33. AppRegistry.registerComponent('ViewProject',() => ViewProject);

定义阴影效果相关的三个样式键

textShadowOffset textShadowRadius textShadowColor

猜你在找的React相关文章