2024-01-01から1日間の記事一覧

タブを使う

App.js import { StatusBar } from 'expo-status-bar'; import { StyleSheet, Text, View } from 'react-native'; import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import { NavigationContainer } from '@react-navigation/nat…

内部ストレージの使い方の復習

サンプルコード1 App.js import { StatusBar } from 'expo-status-bar'; import { StyleSheet, Text, View } from 'react-native'; import { useEffect, useState } from 'react'; import AsyncStorage from '@react-native-async-storage/async-storage'; …

React Native で、SQLiteデータベースを使用する~react-native-sqlite-storageライブラリやexpo-sqliteライブラリ~

React NativeでSQLiteデータベースを使用するには、react-native-sqlite-storageライブラリやexpo-sqliteライブラリを使用します。 違いについては下記HP参照。 react-native-sqlite-storageとexpo-sqliteの罠 #JavaScript - Qiita React Nativeをbare flow…

JavaScriptの文字操作

www.sejuku.net