Erro ao empacotamento para a web a partir de um Reagir componente Nativo usando babel-plugin-reagir-nativos da web

0

Pergunta

Estou a seguir este tutorial para configurar a agregação para a web a partir de um Reagir componente Nativo.

Eu estou com êxito agrupamento utilizando o webpack config do tutorial, no entanto, quando me importar exportado Botão em um projeto React e tentar torná-lo, recebo o seguinte erro no navegador:

TypeError: Failed to construct 'Image': Please use the 'new' operator, this DOM object constructor cannot be called as a function.

renderWithHooks
./node_modules/react-dom/cjs/react-dom.development.js:14803

  14800 |   }
  14801 | }
  14802 | 
> 14803 | var children = Component(props, secondArg); // Check if there was a render phase update
        | ^  14804 | 
  14805 | if (workInProgress.expirationTime === renderExpirationTime) {
  14806 |   // Keep rendering in a loop for as long as render phase updates continue to

Abaixo está a Reagir componente Nativo sou de empacotamento para web:

import React from "react";
import { TouchableOpacity, StyleSheet, Text } from "react-native";

export default function Button({ onPress, imageSource }) {
  return (
    <TouchableOpacity style={styles.button} onPress={onPress}>
      <Text>
        A
        </Text>
    </TouchableOpacity>
  );
}

const styles = StyleSheet.create({
  container: {
    width: 56,
    height: 56,
    borderRadius: 28,
    justifyContent: "center",
    alignItems: "center",
    backgroundColor: "#fff",
  },
  image: {
    width: 28,
    height: 28,
  },
});

Estas são as versões dos pacotes que eu estou usando para reunir a Reagir componente Nativo com:

"babel-plugin-react-native-web": "^0.17.5",
"metro-react-native-babel-preset": "^0.66.2",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"babel-loader": "^8.2.3",
babeljs react-native reactjs webpack
2021-11-24 06:18:01
1

Melhor resposta

0

Percebi que o problema é que o tutorial não é de exportação Image, Eu estou agora corretamente exportação Image e ele está funcionando.

2021-11-24 11:37:12

Em outros idiomas

Esta página está em outros idiomas

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................