unicorn-demo-app 6.26.2 → 6.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -21,18 +21,18 @@ export default class BadgesScreen extends Component {
|
|
|
21
21
|
|
|
22
22
|
customElement1 = (
|
|
23
23
|
<View row>
|
|
24
|
-
<Image source={bell}/>
|
|
25
|
-
<Image source={bell}/>
|
|
24
|
+
<Image tintColor={Colors.$iconDefaultLight} source={bell}/>
|
|
25
|
+
<Image tintColor={Colors.$iconDefaultLight} source={bell}/>
|
|
26
26
|
</View>
|
|
27
27
|
);
|
|
28
28
|
|
|
29
29
|
customElement2 = (
|
|
30
30
|
<View row>
|
|
31
|
-
<Image source={bell}/>
|
|
32
|
-
<Text
|
|
31
|
+
<Image tintColor={Colors.$iconSuccessLight} source={bell}/>
|
|
32
|
+
<Text $textSuccessLight text90>
|
|
33
33
|
37
|
|
34
34
|
</Text>
|
|
35
|
-
<Image source={bell}/>
|
|
35
|
+
<Image tintColor={Colors.$iconSuccessLight} source={bell}/>
|
|
36
36
|
</View>
|
|
37
37
|
);
|
|
38
38
|
|
|
@@ -152,7 +152,7 @@ export default class BadgesScreen extends Component {
|
|
|
152
152
|
</Text>
|
|
153
153
|
<View row spread marginH-50>
|
|
154
154
|
<Badge marginR-10 label={'17'} customElement={this.customElement1}/>
|
|
155
|
-
<Badge marginR-10 customElement={this.customElement2} backgroundColor={Colors.$
|
|
155
|
+
<Badge marginR-10 customElement={this.customElement2} backgroundColor={Colors.$backgroundDisabled}/>
|
|
156
156
|
</View>
|
|
157
157
|
</ScrollView>
|
|
158
158
|
</View>
|