реагировать родной экспо QRcode ГЕНЕРАТОР - PullRequest
2 голосов
/ 15 апреля 2020

Я хочу создать свое приложение QRCODE GENERATOR в React Native Expo .

Я работаю с QR-кодом - модуль реагировать-родной-код версия 0.2.7 и у меня это ошибка .

Ответы [ 2 ]

1 голос
/ 15 апреля 2020

react-native-qrcode больше не поддерживается.

Вы можете использовать react-native-qrcode-svg пакет

https://www.npmjs.com/package/react-native-qrcode-svg

yarn add react-native-qrcode-svg

ИЛИ

npm install --save react-native-qrcode-svg
0 голосов
/ 15 апреля 2020
import React, { Component } from 'react';
import { StyleSheet, View, TextInput, TouchableOpacity, Text,} from 'react-native';
import QRCode from 'react-native-qrcode';
class App extends Component {
constructor() {
super();
this.state = {
  inputValue: '',

  valueForQRCode: '',

    };
}

  getTextInputValue = () => {
this.setState({ valueForQRCode: this.state.inputValue });
};

 render() {
return (
  <View style={styles.MainContainer}>

    <TextInput
      style={styles.TextInputStyle}
      onChangeText={text => this.setState({ inputValue: text })}
      underlineColorAndroid="transparent"
      placeholder="Enter text to Generate QR Code"
    />
    <TouchableOpacity
      onPress={this.getTextInputValue}
      activeOpacity={0.7}
      style={styles.button}>
      <Text style={styles.TextStyle}> Generate QR Code </Text>
    </TouchableOpacity>
  </View>
);
}
}
     export default App;
...