Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created August 10, 2018 05:37
Show Gist options
  • Save isacjunior/e3ab205469a32f83663f14315a48a09d to your computer and use it in GitHub Desktop.
Save isacjunior/e3ab205469a32f83663f14315a48a09d to your computer and use it in GitHub Desktop.
// 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