随笔分类 -  react native

中文网:http://reactnative.cn/
React-Native之截图组件react-native-view-shot的介绍与使用
摘要:一、现象 1、需求:把某展示页面进行截取保存到相册、并可进行以海报的形式分享出去; 2、支持iOS和安卓 二、解决 1、安装: npm i --save react-native-view-shot 2、进行链接处理:react-native link react-native-view-shot 阅读全文
posted @ 2021-08-25 11:17 小老虎网络 阅读(1546) 评论(0) 推荐(0)
React Native 在IOS 14.0下调试无法显示图片的问题处理
摘要:一、现象 应用在IOS 14.0下调试无法显示图片 二、解决 1、在依赖包中找到文件:RCTUIImageViewAnimated.m 路径如:/node_modules/react-native/Libraries/Image 下 2、修改文件,大概269行 原: if (_currentFram 阅读全文
posted @ 2020-11-26 15:13 小老虎网络 阅读(1409) 评论(0) 推荐(0)
RN与webview通讯
摘要:一、RN给webview发送信息 this.webview.postMessage(message) 二、监听从React Native发过来的消息: window.document.addEventListener('message', function (e) { const message = 阅读全文
posted @ 2017-09-05 15:40 小老虎网络 阅读(1481) 评论(0) 推荐(0)
解决安装xcode后git使用报错的问题
摘要:一、现象: htmlxdeMacBook-Pro:demo htmlx$ git status Agreeing to the Xcode/iOS license requires admin privileges, please run “sudo xcodebuild -license” and 阅读全文
posted @ 2017-04-11 11:26 小老虎网络 阅读(10880) 评论(0) 推荐(0)