Blog Content

  • RN 애러

    bundling failed: Error: Unable to resolve module `@react-native-community/toolbar-android` from `node_modules/react-native-vector-icons/lib/toolbar-android.js`: @react-native-community/toolbar-android could not be found within the project. https://www.npmjs.com/package/@react-native-community/toolbar-android 참고

    Read more
  • map

    import React from 'react'; const index = [1,2,3,4,5]; const obj = { // 배열을 만들어서 넣어주고 map을 돌려야 동작된다. name : 'sub', age : 40, }; const data = [obj]; const MyComponent = (props) => { return ( { index.map ( item => { // item 은 [1,2,3,4,5] 을 가르킨다. return ( 리액트 { item } ) }) } { data.map ( obj => { return ( { obj.name } { obj.age } ) }) } ); }; export default MyComponent;

    Read more
  • 리액트 네이티브 헤더 옵션관련

    Category 개발연습막쓰기 on 2020. 7. 27. 11:48

    https://reactnavigation.org/docs/stack-navigator

    Read more
  • 기존 프로젝트 git repository 업로드

    Category 개발연습막쓰기/개발연습 막쓰기 on 2020. 7. 26. 17:01

    >> git init>> git add .>> git commit -m "first commit">> git remote add origin .git>> git push origin master >> git id/password 입력

    Read more
  • react native gradient

    https://github.com/react-native-community/react-native-linear-gradient

    Read more
  • useState 적용

    useState 적용 토글 스위치 import React , { useState } from 'react' import {Image, StyleSheet, Text, TouchableOpacity, View, TextInput, } from 'react-native'; import assets from "../../../assets"; import {useNavigation} from "@react-navigation/core"; const styles = StyleSheet.create({}); const Setting = (props) => { const navigation = useNavigation(); const [isEnabled, setIsEnabled] = useState(true); co..

    Read more
  • 이클립스 설치 순서

    Category 개발연습막쓰기/JAVA on 2020. 3. 10. 10:21

    JAVA 개발 관련해서 스터디를 하는 공간... 그냥 막 쓰는 중 이클립스 설치 순서 https://www.oracle.com/ jdk 설치 이후 jre 설치 이후 이클립스 설치 https://www.eclipse.org/downloads/이클립스 다운로드 이후 설치

    Read more
  • 탭메뉴 1-1

    Category 개발연습막쓰기/jQuery on 2019. 11. 18. 14:03

    이벤트 위임을 이용한 탭메뉴 1 - 1 이벤트 위임을 이용한 탭메뉴 1-1 이벤트 위임을 이용한 탭메뉴 Tab 1 Tab 2 Tab 3 Lorem ipsum 1 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias amet commodi cupiditate molestias laboriosam sit! Delectus magni esse magnam libero Lorem list 2 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam tincidunt mauris eu risus. Vestibulum auctor dapibus neque. Yolo 3 Pellentesque h..

    Read more
  • jQuery 그래프 [graph] - 수치 적용

    Category 개발연습막쓰기/jQuery on 2019. 8. 23. 15:17

    그래프 [graph] - 수치를 그래프에 대입 이것이 딱히 그래프라고 하기엔 조금... 뭔가 적당한 용어라던지 그런것이 생각이 안나서 그냥 그래프로 이름을 정하는 걸로.. 일단 구조는 간단합니다. 우선 저는 퍼블리셔이니까 제가 하고자 했던 부분은 그래프우측에 위치하고 있는 수치 아마 이 부분은 "개발자"분들이 값을 던저 주겠죠...? 아닐까나? 아님 뭐 .. 어쩔수 없고 .. 하여 우측에 텍스트의 값을 받아서 그래프[도표] 안에 대입을 시켜줍니다. 하단의 이미지를 참고해주세요. 사용 연차 30% 사용가능 연차 70% .present-area {margin:0 auto; background:#fff; border-radius: 1rem; box-sizing: border-box} .present-area ..

    Read more