问题标签 [react-native]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
21 回答
253381 浏览

javascript - React Native 固定页脚

我尝试创建看起来像现有网络应用程序的反应原生应用程序。我在窗口底部有一个固定的页脚。有谁知道如何通过本机反应来实现这一点?

在现有应用程序中很简单:

0 投票
1 回答
26741 浏览

react-native - 列表视图顶部的叠加视图?

我有一个具有全屏列表视图的应用程序。我想在顶部添加一个新的视图层次结构(它会部分阻止列表视图并浮动在上方)。有点像 Tweetbot,它将作为一个下拉消息框,覆盖在列表视图之上。

我想不出正确的渲染代码来实现这一点。我能够在 ListView 和浮动视图上将位置设置为绝对以将它们分层,但无法弄清楚如何将 ListView 扩展到全屏 ( flex: 1) 并将浮动框放在顶部。

0 投票
5 回答
2819 浏览

pouchdb - react native 是否有任何文档存储?

拥有类似于PouchDB的东西会很棒。

当前的键值存储(AsyncStorage)肯定不足以存储和查询数据。

0 投票
7 回答
164496 浏览

json - react-native 如何从本地JSON文件中获取数据?

如何存储 JSON 等本地文件,然后从控制器获取数据?

0 投票
4 回答
1343 浏览

facebook - React Native 和 Parse.FacebookUtils

我想使用 Parse 和 Facebook 将用户登录到我的 React-Native 应用程序,但 Facebook JS SDK 似乎依赖于 dom。如何使用 facebook 登录用户?

我目前正在使用https://github.com/magus/react-native-facebook-login本地登录用户,因此我可以访问他们的身份验证令牌等。但不能在没有 FB JS SDK 的情况下使用 Parse.FacebookUtils.login() 。

0 投票
3 回答
1813 浏览

javascript - React Native - 到处留下逗号有什么意义?

在使用 React Native 时,我注意到它的贡献者和示例中有一些奇怪的约定——在任何地方留下逗号,例如:

重点是什么?

0 投票
1 回答
753 浏览

ios - 在 React Native 中使用原生 ios 视图

有没有办法使用原生 ui 组件,除了通过 js 文件中的 react native(ListView、Text 等)交付?

例如,我有一个由 react native 创建的应用程序,我想在其中使用MWPhotoBrowser

0 投票
2 回答
2719 浏览

javascript - React Native 目前是否支持访问用户的通讯录

看起来核心 React Native API 没有为 iOS 上的地址簿列出任何内容。这似乎是您需要在应用程序中做的核心事情。

这是只需要建造的东西,还是有什么特殊原因似乎没有这方面的信息?

0 投票
5 回答
21056 浏览

react-native - 在 navigator pop 上反应 Native Pass 属性

我在我的反应本机应用程序上使用 NavigatorIOS。我想在导航回上一条路线时传递一些属性。

一个例子:我在一个表单页面中。提交数据后,我想回到之前的路线,根据提交的数据做一些事情

我该怎么做?

0 投票
2 回答
39233 浏览

react-native - React-Native this.setState() is not working

I am unable to get react-native's this.setState(); to work.

When I run the onUpdate method, I can see the correct JSON object being returned.

The issue is when the setState function is called nothing happens and the method fails. No more code is executed below it. It also not re-render the component after the setState function.

Here is my component code below: