胶囊日记 app
Find a file
2019-08-04 17:41:00 +08:00
__tests__ init 2019-04-16 17:33:08 +08:00
android 修复弱网崩溃问题 2019-07-28 17:19:17 +08:00
ios 修复 iOS 保存照片失败问题 2019-07-28 21:18:20 +08:00
src 删除调试代码 2019-08-01 23:08:37 +08:00
.buckconfig init 2019-04-16 17:33:08 +08:00
.flowconfig init 2019-04-16 17:33:08 +08:00
.gitattributes init 2019-04-16 17:33:08 +08:00
.gitignore android 接入 firebase 2019-07-21 17:45:26 +08:00
.watchmanconfig init 2019-04-16 17:33:08 +08:00
App.js 修复弱网崩溃问题 2019-07-22 22:29:17 +08:00
app.json init 2019-04-16 17:33:08 +08:00
babel.config.js init 2019-04-16 17:33:08 +08:00
index.js iOS 版本提升 2019-07-22 23:47:05 +08:00
metro.config.js init 2019-04-16 17:33:08 +08:00
package-lock.json 解决键盘问题 2019-07-28 21:49:45 +08:00
package.json 解决键盘问题 2019-07-28 21:49:45 +08:00
prepare.js 首次提交,备份,android未测试 2019-05-07 22:40:24 +08:00
README.md readme 2019-08-04 17:41:00 +08:00
yarn.lock 首次提交,备份,android未测试 2019-05-07 22:40:24 +08:00

胶囊日记 App

已知问题

iOS 上的问题

  1. image picker 在与 ReactNativeNavigation 共存时,会导致 image picker 在选择照片时不自动滚动到视图底部 (底部的照片是最近的照片),可以通过修改 image picker 源码解决

文件 node_modules/react-native-image-crop-picker/ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m 107 行

    // Scroll to bottom
-   if (self.fetchResult.count > 0 && self.isMovingToParentViewController && !self.disableScrollToBottom) {
+   if (self.fetchResult.count > 0 && !self.disableScrollToBottom) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:(self.fetchResult.count - 1) inSection:0];
        [self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionTop animated:NO];
    }