import React from 'react'; import { View, StyleSheet, useColorScheme } from 'react-native'; import DrawingCanva from '../components/DrawingCanva'; import KanjiPlaygroundList from '../components/KanjiPlaygroundList'; import { Kanji } from '../model/kanji'; const Playground = () => { // 親 雨 序 余 貴 郷 const playgroundStyle = useColorScheme() == 'light' ? playgroundStyle_light : playgroundStyle_dark; return ( ); }; const playgroundStyle_light = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: "#f5f5f5" } }) const playgroundStyle_dark = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#2B2B2B', }, }); export default Playground;