Created
May 7, 2019 13:32
-
-
Save ebnersilva/e819f87193e8871856b6199253bfec51 to your computer and use it in GitHub Desktop.
Post Medium - Criando um footer personalizado para nosso aplicativo - Estilos
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
import styled from 'styled-components'; | |
export const Container = styled.View` | |
display: flex; | |
flex: 1; | |
background: transparent; | |
`; | |
export const Footer = styled.View` | |
background: transparent; | |
height: 80px; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
`; | |
export const Image = styled.ImageBackground` | |
height: 100%; | |
width: 100%; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
flex-direction: row; | |
padding-left: 30px; | |
padding-right: 30px; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment