新しい React Native プロジェクトを作成し、プロジェクトに @shoutem/ui をインストールし、React Native アプリに Shoutem UI の Examples コンポーネントを含めます。
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import { Examples } from '@shoutem/ui';
class HelloWorld extends Component {
render() {
return (
<Examples />
);
}
}
AppRegistry.registerComponent('HelloWorld', () => HelloWorld);
しかし、プロジェクトを開始すると、「不明な名前付きモジュール: 'react/lib/NativeMethodsMixin'」エラーが発生します。