inflearn logo
Course

Course

Instructor

Ryan Lee's Posts

Ryan Lee Ryan Lee

@0215ryan9272

Reviews Written
2
Average Rating
5.0

Posts 3

Q&A

저는 안드로이드 에뮬레이터가 왜 이렇게 나올까요..?

import { SafeAreaView, StyleSheet, Text, View, StatusBar } from "react-native"; import React from "react"; const MainScreen = () => { return ( ToDo App ); }; export default MainScreen; const styles = StyleSheet.create({ container: { paddingTop: StatusBar.currentHeight, // 상태 표시줄 높이만큼 여백 추가 }, });

Likes
0
Comments
3
Viewcount
544

Q&A

e.keyCode 질문

e.key === 'ArrowLeft' 와 e.key === 'ArrowRight'로 해결하면 되는군요!

Likes
0
Comments
2
Viewcount
1006