微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

React Native View 组件通过阴影渲染实现组件浮现效果

eveation 是Android 平台都有的样式键,它是数值类型的样式键,通过在组件的周围渲染阴影效果,让用户产生组件浮现在手机上的效果

import React,{ Component } from 'react';
import {
  AppRegistry,StyleSheet,Text,View
} from 'react-native';

export default class ViewProject extends Component {
  render() {
    return (
      <View style={styles.container}>
         <View style={styles.block} />
         <View style={styles.block1} />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,justifyContent:"space-around",alignItems:"center",backgroundColor:"white",},block:{
    width:150,height:150,borderWidth:1,backgroundColor:"black",borderRadius:25,block1:{
    width:150,elevation:100
  },});
AppRegistry.registerComponent('ViewProject',() => ViewProject);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐