/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow * @providesModule WKWebView */ const React = require('react'); const requireNativeComponent = require('requireNativeComponent'); const RCTWKWebView = requireNativeComponent('RCTWKWebView'); type RCTWKWebViewProps = { allowsInlineMediaPlayback?: boolean, }; class WKWebView extends React.Component { componentWillReceiveProps(nextProps: RCTWKWebViewProps) { if (this.props.allowsInlineMediaPlayback !== nextProps.allowsInlineMediaPlayback) { console.error('Changes to property allowsInlineMediaPlayback do nothing after the initial render.'); } } render() { return ; } } module.exports = WKWebView;