Skip to content

Instantly share code, notes, and snippets.

@alanfoandrade
Created May 19, 2021 00:00
Show Gist options
  • Save alanfoandrade/3316cbe6e30fbb4a3060c6f04489efb0 to your computer and use it in GitHub Desktop.
Save alanfoandrade/3316cbe6e30fbb4a3060c6f04489efb0 to your computer and use it in GitHub Desktop.
import React from 'react';
import {
Container,
Text,
Card,
BorderTopLeft,
BorderTopRight,
BorderBottomLeft,
BorderBottomRight,
} from './styles';
const Dashboard: React.FC = () => {
return (
<Container>
<Text>DASHBOARD</Text>
<Card>
<BorderBottomLeft />
<BorderBottomRight />
</Card>
<Card>
<BorderTopLeft />
<BorderTopRight />
</Card>
</Container>
);
};
export default Dashboard;
import styled from 'styled-components/native';
export const Text = styled.Text`
font-size: 24px;
font-family: 'Roboto-Medium';
color: #444;
`;
export const Container = styled.View`
flex: 1;
background: #ddd;
padding: 8px;
align-items: center;
`;
export const Card = styled.View`
border-radius: 8px;
height: 200px;
background: #fff;
align-self: stretch;
position: relative;
`;
export const BorderTopLeft = styled.View`
background: #ddd;
position: absolute;
left: 0;
top: 0;
width: 12px;
height: 12px;
border-bottom-right-radius: 24px;
`;
export const BorderTopRight = styled.View`
background: #ddd;
position: absolute;
right: 0;
top: 0;
width: 12px;
height: 12px;
border-bottom-left-radius: 24px;
`;
export const BorderBottomLeft = styled.View`
background: #ddd;
position: absolute;
left: 0;
bottom: 0;
width: 12px;
height: 12px;
border-top-right-radius: 24px;
`;
export const BorderBottomRight = styled.View`
background: #ddd;
position: absolute;
right: 0;
bottom: 0;
width: 12px;
height: 12px;
border-top-left-radius: 24px;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment