@@ -19,25 +19,22 @@ const CustomCardScreen = () => {
19
19
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor.
20
20
</ Text >
21
21
< View style = { styles . sectionContainer } >
22
+
22
23
< View style = { styles . rowContainer } >
23
- < View style = { styles . itemContainer } >
24
- < CustomCard
25
- iconSource = { < PlaceholderIcon /> }
26
- title = "Title"
27
- description = "Description"
28
- size = "md"
29
- state = "active" // Standard: aktive Darstellung
30
- />
31
- </ View >
32
- < View style = { styles . itemContainer } >
33
- < CustomCard
34
- iconSource = { < PlaceholderIcon /> }
35
- title = "Title"
36
- description = "Description"
37
- size = "lg"
38
- state = "active"
39
- />
40
- </ View >
24
+ < CustomCard
25
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
26
+ title = "Title"
27
+ description = "Description"
28
+ size = "md"
29
+ state = "active" // Standard: aktive Darstellung
30
+ />
31
+ < CustomCard
32
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
33
+ title = "Title"
34
+ description = "Description"
35
+ size = "lg"
36
+ state = "active"
37
+ />
41
38
</ View >
42
39
</ View >
43
40
@@ -54,33 +51,27 @@ const CustomCardScreen = () => {
54
51
</ Text >
55
52
< View style = { styles . sectionContainer } >
56
53
< View style = { styles . rowContainer } >
57
- < View style = { styles . itemContainer } >
58
54
< CustomCard
59
- iconSource = { < PlaceholderIcon /> }
55
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
60
56
title = "Title"
61
57
description = "Description"
62
58
size = "lg"
63
59
state = "active"
64
60
/>
65
- </ View >
66
- < View style = { styles . itemContainer } >
67
61
< CustomCard
68
- iconSource = { < PlaceholderIcon /> }
62
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
69
63
title = "Title"
70
64
description = "Description"
71
65
size = "lg"
72
66
state = "default"
73
67
/>
74
- </ View >
75
- < View style = { styles . itemContainer } >
76
68
< CustomCard
77
69
iconSource = { < PlaceholderIcon /> }
78
70
title = "Title"
79
71
description = "Description"
80
72
size = "lg"
81
73
state = "disabled"
82
74
/>
83
- </ View >
84
75
</ View >
85
76
</ View >
86
77
@@ -97,26 +88,22 @@ const CustomCardScreen = () => {
97
88
</ Text >
98
89
< View style = { styles . sectionContainer } >
99
90
< View style = { styles . rowContainer } >
100
- < View style = { styles . itemContainer } >
101
- < CustomCard
102
- iconSource = { < PlaceholderIcon /> }
103
- title = "Title"
104
- description = "Description"
105
- size = "lg"
106
- state = "active"
107
- showDescription = { true }
108
- />
109
- </ View >
110
- < View style = { styles . itemContainer } >
111
- < CustomCard
112
- iconSource = { < PlaceholderIcon /> }
113
- title = "Title"
114
- description = "Description"
115
- size = "lg"
116
- state = "active"
117
- showDescription = { false }
118
- />
119
- </ View >
91
+ < CustomCard
92
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
93
+ title = "Title"
94
+ description = "Description"
95
+ size = "lg"
96
+ state = "active"
97
+ showDescription = { true }
98
+ />
99
+ < CustomCard
100
+ iconSource = { < PlaceholderIcon fill = { colors . black } /> }
101
+ title = "Title"
102
+ description = "Description"
103
+ size = "lg"
104
+ state = "active"
105
+ showDescription = { false }
106
+ />
120
107
</ View >
121
108
</ View >
122
109
</ ScrollView >
@@ -128,7 +115,6 @@ const styles = StyleSheet.create({
128
115
flex : 1 ,
129
116
paddingHorizontal : paddings . p_16 ,
130
117
paddingVertical : paddings . p_32 ,
131
- marginBottom : paddings . p_32 ,
132
118
backgroundColor : colors . white ,
133
119
} ,
134
120
sectionContainer : {
0 commit comments