expoを使ってreact nativeでアプリを開発中、firebase の認証機能を使おうとしてfirebaseをインストールした後に
javascript
1import firebase from 'firebase';
と記載したところ以下のようなエラーが出ました。
AsyncStorage has been extracted from react-native core and will be removed in a future release. It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'. See https://github.com/react-native-async-storage/async-storage
AsyncStorageをreact-nativeからではなく@react-native-async-storage/async-storageから抽出しろと書かれておりますが、コードの中にAsyncStorageをインポートしている箇所がなく、どこを直したら良いのかわかりません。わかる方いましたらご教授願います。
以下コードの全文です。
javescript
1App.jsx 2import React from 'react'; 3import { StyleSheet } from 'react-native'; 4import { NavigationContainer } from '@react-navigation/native'; 5import { createNativeStackNavigator } from '@react-navigation/native-stack'; 6import firebase from 'firebase'; 7 8import CalenderScreen from './src/screens/CalenderScreen'; 9 10const Stack = createNativeStackNavigator(); 11 12const firebaseConfig = { 13 apiKey: ' ', 14 authDomain: ' ', 15 projectId: ' ', 16 storageBucket: ' ', 17 messagingSenderId: ' ', 18 appId: ' ', 19}; 20if (firebase.apps.length === 0) { 21 firebase.initializeApp(firebaseConfig); 22} 23 24export default function App() { 25 return ( 26 <NavigationContainer> 27 <Stack.Navigator 28 style={styles.a} 29 initialRouteName="calender" 30 screenOptions={{ 31 headerStyle: { backgroundColor: '#467FD3' }, 32 headerTitleStyle: { color: '#ffffff' }, 33 headerTitle: 'CalenderAlerm', 34 headerTintColor: '#ffffff', 35 headerBackTitle: 'Back', 36 gestureEnabled: true, 37 gestureDirection: 'horizontal', 38 }} 39 > 40 <Stack.Screen name="calender" component={CalenderScreen} /> 41 </Stack.Navigator> 42 </NavigationContainer> 43 ); 44} 45 46const styles = StyleSheet.create({ 47 container: { 48 flex: 1, 49 backgroundColor: '#fff', 50 alignItems: 'center', 51 justifyContent: 'center', 52 }, 53}); 54
javascript
1CalenderScreen.jsx 2import React from 'react'; 3import { Calendar, LocaleConfig } from 'react-native-calendars'; 4 5export default function CalenderScreen() { 6 return ( 7 <Calendar 8 monthFormat="yyyy年 MM月" 9 firstDay={1} 10 enableSwipeMonths 11 /> 12 ); 13} 14 15LocaleConfig.locales.jp = { 16 monthNames: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 17 monthNamesShort: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 18 dayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 19 dayNamesShort: ['日', '月', '火', '水', '木', '金', '土'], 20}; 21LocaleConfig.defaultLocale = 'jp';
あなたの回答
tips
プレビュー