我的问题很简单,我试图检测 onLongPress 事件的结束。基本上是在用户松开按键时。
我尝试了 TouchableWithoutFeedback 中所有可能的事件,但一次只有一个事件被触发。
import React from 'react'
import {
View,
Text,
Dimensions,
CameraRoll
} from 'react-native'
import Camera from 'react-native-camera';
const { width, height } = Dimensions.get('window')
class ImageBrowser extends React.Component {
static navigationOptions = {
title: 'Unsplash Images',
}
state = {
images: [],
loading: true,
page: 1,
isRecording : false
}
takeVideo(){
this._recordVideo.bind(this);
}
_recordVideo(){
this.camera.capture({mode: Camera.constants.CaptureMode.video})
.then((data) => {
console.log(data);
})
.catch((err) => {
console.log(err)
})
}
_stopRecord(){
this.camera.stopCapture();
}
render() {
return ( …Run Code Online (Sandbox Code Playgroud){
"users" : {
"1320104182" : {
"datas" : {
"bio" : "some_data",
"picture" : "some_data",
"username" : "some_data",
"website" : "some_data",
"followers" : 14,
}
},
"3271376571" : {
"datas" : {
"bio" : "some_data",
"picture" : "some_data",
"username" : "some_data",
"website" : "some_data",
"followers" : 10,
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
我是 Firebase 的新手,我正在尝试在这里进行多种思考,但到目前为止没有任何成功。
如何在不知道密钥的情况下通过“用户名”检索用户?
或者我如何按关注者订购用户?
我尝试了我可以在文档中找到的所有内容几个小时,我很绝望。