React-Native WebView открыть Google Docs удалить заголовок

При запуске Google Docs в WebView я хочу отключить заголовок Google Docs. Когда я программировал с помощью Swift, мне пришлось отключить JavaScript. Поэтому я попробовал тот же метод, но он не работает. Как удалить заголовок Документов Google из React-Native WebView?

import React, { Component } from 'react';
import { StyleSheet,View,WebView } from 'react-native';
import {
  Container, Header, Left, Button, Icon, Content,Text
} from 'native-base';


const styles = StyleSheet.create({
  wrapper: {
    justifyContent: 'center',
    flexDirection: 'column',
    flex: 1,
  },
});

class WebViewContainer extends Component {

  render() {
    return (
      <View style={styles.wrapper}>
      <Container>
      <Header />
        <Content scrollEnabled={false} contentContainerStyle={styles.wrapper}>
        <Text>text</Text>
          <WebView
            injectedJavaScript={false}
            javaScriptEnabled={false}
            originWhitelist={['*']}
            source={{ uri: 'https://docs.google.com/document/d/1VyuUU550TtZNMpX31z9lRSrYFABkthLXi-4qfheq4GU/edit?usp=sharing' }}
          />
          <Text>text</Text>
        </Content>
      </Container>
      </View>
    );
  }
}

export default WebViewContainer;

https://snack.expo.io/r1mBAV-64

1 ответ

Решение

Проблема в том, что javaScriptEnabled не распространяется на IOS.

Вы можете изменить react-native-webview чтобы javaScriptEnabled применены.

https://github.com/aksmfosef11/react-native-webview/tree/add-javascriptEnabled-in-IOS

Другие вопросы по тегам