胶囊日记 app
Find a file
dependabot[bot] 997dfeae66
Bump xmldom and plist
Removes [xmldom](https://github.com/xmldom/xmldom). It's no longer used after updating ancestor dependency [plist](https://github.com/TooTallNate/node-plist). These dependencies need to be updated together.


Removes `xmldom`

Updates `plist` from 3.0.1 to 3.0.6
- [Release notes](https://github.com/TooTallNate/node-plist/releases)
- [Changelog](https://github.com/TooTallNate/plist.js/blob/master/History.md)
- [Commits](https://github.com/TooTallNate/node-plist/commits)

---
updated-dependencies:
- dependency-name: xmldom
  dependency-type: indirect
- dependency-name: plist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-12 00:36:50 +00:00
__tests__ init 2019-04-16 17:33:08 +08:00
android android 增加启动视图 2019-08-25 22:23:18 +08:00
ios iOS 版本号更新 2019-08-25 23:31:10 +08:00
src 关注按钮高度调整字号调整 2020-06-07 15:21:38 +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-08-25 20:17:14 +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 修复欢迎页不显示问题 2019-08-25 20:04:16 +08:00
metro.config.js init 2019-04-16 17:33:08 +08:00
package-lock.json Bump xmldom and plist 2022-10-12 00:36:50 +00:00
package.json iOS 版本号升级 2019-08-04 23:02:25 +08:00
prepare.js 首次提交,备份,android未测试 2019-05-07 22:40:24 +08:00
README.md readme 2019-08-25 21:00:09 +08:00
yarn.lock Bump xmldom and plist 2022-10-12 00:36:50 +00: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];
    }

android 上的问题

  1. react-native-actionsheet-api bug

https://github.com/qfight/react-native-actionsheet-api/issues/4