ゴミ通知アプリを作成しており、react-native-elements の Checkbox を実装しています。
コードに反映したところ、以下のエラーが発生しました。
Element type is invalid: expected a string (for bulit-in components) or a class/function (for composite components) but got: undefined.
以下は、今回書いているReminderScreenの全文になります。
初心者で申し訳ないですが、ご教示いただけるとうれしいです。
ReactNative
1import { StatusBar } from 'expo-status-bar'; 2import React from 'react'; 3import { Checkbox, Icon } from 'react-native-elements'; 4import ReminderItem from "../components/ReminderItem"; 5import { Image, StyleSheet, Text, View, TouchableHighlight } from 'react-native'; 6 7export default function ReminderScreen() { 8 return ( 9 <View style={styles.container}> 10 <View style={styles.checkbox}> 11 <Checkbox 12 title="Click Here" 13 icon={{name:"dot-circle-o"}} 14 /> 15 </View> 16 <ReminderItem text="燃えるごみ"/> 17 <ReminderItem text="容器包装プラスチック"/> 18 <ReminderItem text="缶・金属類"/> 19 <ReminderItem text="ビン類"/> 20 <ReminderItem text="埋め立てごみ"/> 21 <ReminderItem text="家族や友だちに教える"/> 22 </View> 23 ); 24} 25 26const styles = StyleSheet.create({ 27 container: { 28 flex: 1, 29 backgroundColor: '#fff', 30 }, 31 checkbox: { 32 top:50, 33 }, 34}); 35
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/11 01:33