Получает ошибку при использовании Readbilty-view (ошибка при обновлении отображения свойства в теневом узле типа: RCTText) - PullRequest
0 голосов
/ 14 октября 2019

Я попытался реализовать представление с возможностью восстановления в реагирующем языке. На некоторых веб-сайтах оно работает нормально, но на другом я получаю следующую ошибку "ошибка при обновлении отображения свойства в теневом узле типа: RCTText".

Это ошибка &

import { Text, View, StyleSheet } from 'react-native';
import ReadabilityView from "react-native-readability";
//import Constants from 'expo-constants';

const css =
  `body {
    color: #2a2a2a;
  }
  h1 {
    border-bottom-width: 1px;
    border-color: #ccc;
    padding-bottom: 3px;
    border-bottom-style:solid;
    font-size: 1.6em;
    font-weight: bold;
    letter-spacing: .05em;
  }
  p {
    letter-spacing: .03em;
  }`;

export default class SimpleWebView extends React.Component {
  render() {
    const { navigation } = this.props;
    return (
      <View style={styles.continer}>
        <ReadabilityView
          automaticallyAdjustContentInsets={true}
          htmlCss={css}
          url={(navigation.getParam('url'))}
          title=
          {navigation.getParam('title')}
        />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  continer: {
    flex: 1,
    //paddingTop: Constants.statusBarHeight
  }
});```

...