react-native 썸네일형 리스트형 react native 가운데 정렬 * 상황 - 로그인 화면을 구현하는데 가운데 정렬하고 싶어졌다. * 해결 import React, { Component } from "react"; import { Text, View, StyleSheet } from "react-native"; const styles = StyleSheet.create({ login: { flex: 1, justifyContent: "center", alignItems: "center" } }); class Login extends Component { render() { return ( Login ); } } export default Login; 위와 같이 코드를 지정해주면 됨. - alignItems : 가로 가운데 정렬 - justifyContent : 세로 가.. 더보기 20190910 1. String to int, int to String 형변환하는 거 잊음. String to int String f="123"; int t=Integer.parseInt(f); int to String int f=123; String t=Integer.toString(f); https://nota.tistory.com/49 2. int값 여러 개 받는 거 잊음. Scanner sc = new Scanner(System.in); int a=sc.nextInt(), b=sc.nextInt(); https://limkydev.tistory.com/170 3. 포맷 형태로 출력하는 거 잊음. int age=10; System.out.printf("%d%n",age); https://keep-cool.tist.. 더보기 이전 1 다음