如何使用按机打开JavaScript文件(反应本机应用程序)

时间:2018-08-25 06:27:12

标签: react-native react-navigation

如何使用按打开功能打开JavaScript文件,我无法使用按打开功能从一个文件导航到另一个文件,我希望能够按下按钮并从我的第一个可触摸对象连接到其他Java脚本文件-opacity

import React, { Component } from 'react';
import { StyleSheet, Text, View, Image,ImageBackground,button, TouchableOpacity, Dimensions,Button} from 'react-native';
import {StackNavigator,} from 'react-navigation';

const width = Dimensions.get('window').width; 
const height = Dimensions.get('window').height;
const video=[video1.js]

export default class App extends Component {
  constructor(props){
    super(props)
  }
  render() {
   return (

     <View style={{flexDirection: "row"}}>
        <ImageBackground source={{uri: 'https://lumiere-a.akamaihd.net/v1/images/usa_avengers_sb_bkgd8_1024_0ae5b001.jpeg?region=0%2C0%2C1024%2C576'}}
                         style={{width: width, height: height,}}> 



    <TouchableOpacity onPress={this.props.video}
      style={styles.spiderman}>
          <Image source={{uri: 'http://www.pngmart.com/files/2/Spider-Man-Transparent-Background.png'}}
                 style={{width: 190, height:250,}}/
           >
    </TouchableOpacity>

1 个答案:

答案 0 :(得分:0)

您正在使用React Navigation处理应用程序中的路由。在React Navigation中,您必须定义路由的结构,然后通过this.props.navigation.navigate('name_of_screen')转到另一个屏幕,建议您阅读Documentation