전체 글

전체 글

    [Gymt] (react-native) 홈화면 Slider(swiper)와 Tab

    (1) Slider 슬라이더 구현을 위해 필요한건 Swiper이다. 패키지 설치를 해주자. import Swiper from "react-native-web-swiper"; //import Slide.js from ~ const nowContest = [ { url : '사이트 주소', imageTitle : '이미지 파일 이름' }, { url : '사이트 주소', imageTitle : '이미지 파일 이름' }, { url : '사이트 주소', imageTitle : '이미지 파일 이름' } } {nowContest.map(contest => ( ))} Swiper 깃헙 주소를 참고하면 되겠다. 내가 쓴 props는 dotsTouchable: => 슬라이더에 있는 점들을 클릭해서 넘어가게 할건지 pr..