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

前端之家收集整理的这篇文章主要介绍了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);

原文链接:https://www.f2er.com/react/304467.html

猜你在找的React相关文章