随笔分类 - 代码总结
总结一些代码,方便以后借鉴
摘要:import { Animated, } from 'react-native'; constructor(props){ super(props) this.state={ fadeInOpacity: new Animated.Value(0), // 初始值 } } componentDidMount(){...
阅读全文
摘要:judgeduplicatelianxiren(arr){ var s = new Set() arr.forEach(i => s.add(i.custPhone)) if(arr.length !== s.size) { return true }else{ return false } }
阅读全文
摘要:rn 0.55.4 yarn add react-native-baidu-map react-native link react-native-baidu-map 把这个override去掉 添加依赖的时候改成这个样子
阅读全文
摘要:点这里,这篇文章写的不错,我就是记录一下
阅读全文
摘要:navigation跳转并传值到下一个页面 NavigationActions支持 Navigate: Reset: Back: Set Params: Init: Navigate使用方法如下 Reset使用方法如下 SetParams使用方法如下
阅读全文
摘要:使用新的导航组件react navigation,传值方式略微发生了一些改变 A页面到B页面 B页面代码
阅读全文
摘要:1、Text其实是自带背景颜色的,平时被包在View组件中看不出来,如果 包在Image组件中就能发现了,如果你想去掉背景色,可以在Text的 style里面设置 backgroundColor:"transparent" 2、Text有行间距与字间距属性 字间距:letterSpacing 行间距
阅读全文
摘要:1、ScrollView有一个方法叫scrollTo, 使用示例: scrollTo({x: 0, y: 0, animated: true}) x表示水平方向滚动的距离 y表示垂直方向滚动的距离 有了这个方法你就可以让ScrollView里面的组件想滚动到哪 就滚动到哪 调用示例如下 组件挂载的时
阅读全文
摘要:1、要画一个如图所示的虚线 style={{ width:100, height:100, justifyContent:"center", alignItems:"center", borderWidth:1, marginTop:10, borderRadius:5, borderColor:"
阅读全文

浙公网安备 33010602011771号