Created
August 10, 2018 05:37
-
-
Save isacjunior/e3ab205469a32f83663f14315a48a09d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/styled.js | |
import styled from 'styled-components' | |
export const HomeContainer = styled.View` | |
flex: 1; | |
background-color: rgb(109, 33, 119); | |
` | |
export const SwiperContainer = styled.View` | |
flex: 1; | |
margin-left: 20; | |
margin-right: 20; | |
align-items: center; | |
justify-content: center; | |
` | |
export const SwiperItemMock = styled.View` | |
width: 100%; | |
height: 350; | |
background-color: white; | |
borderRadius: 5; | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment