Skip to content

Instantly share code, notes, and snippets.

@ebnersilva
Created May 7, 2019 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebnersilva/e819f87193e8871856b6199253bfec51 to your computer and use it in GitHub Desktop.
Save ebnersilva/e819f87193e8871856b6199253bfec51 to your computer and use it in GitHub Desktop.
Post Medium - Criando um footer personalizado para nosso aplicativo - Estilos
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