-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyledComp.jsx
68 lines (60 loc) · 1.44 KB
/
StyledComp.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import styled from "styled-components/native";
export const StyledView = styled.View`
background-color: ${({ special, special1 }) =>
special ? "#ffff" : special1 ? "#ffff" : "#ffff"};
flex: 1;
justify-content: center;
align-items: center;
`;
export const StyledView1 = styled.ImageBackground`
background-color: black;
width: 100%;
justify-content: center;
align-items: center;
`;
export const StyledText = styled.Text`
color: black;
font-size: 32px;
font-weight: bold;
text-align: center;
`;
export const StyledInput = styled.TextInput`
height: 40px;
width: 95%;
margin: 12px;
padding: 10px;
border: 4px;
border-color: lavender;
background-color: white;
font-size: 18px;
`;
export const StyledTouchableOpacity = styled.TouchableOpacity`
width: 80%;
margin: 12px;
padding: 10px;
background-color: #5e81ac;
border-radius: 50px;
`;
export const StyledTouchableOpacityDrop = styled.TouchableOpacity`
width: 80%;
margin: 12px;
padding: 10px;
background-color: #fab005;
border-radius: 50px;
`;
export const StyledViewLista = styled.View`
margin-top: 5%;
flex-direction: row;
border-color: #ffffff;
border-bottom-width: 1.5px;
width: 100%;
align-items: stretch;
min-height: 40px;
`;
export const StyledTextoLista = styled.Text`
padding: 10px;
margin-Top: 2px;
font-Size: 17px;
font-Weight: bold;
color: black;
`;