esoftplay-event 0.0.1-w → 0.0.1-x
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/config.json +1 -1
- package/event/order_lottery.tsx +2 -1
- package/package.json +1 -1
package/config.json
CHANGED
package/event/order_lottery.tsx
CHANGED
|
@@ -15,6 +15,7 @@ import esp from 'esoftplay/esp';
|
|
|
15
15
|
import useSafeState from 'esoftplay/state';
|
|
16
16
|
import { useEffect } from 'react';
|
|
17
17
|
|
|
18
|
+
import { EventHtmltext } from 'esoftplay/cache/event/htmltext/import';
|
|
18
19
|
import { LibProgress } from 'esoftplay/cache/lib/progress/import';
|
|
19
20
|
import React from 'react';
|
|
20
21
|
import { Pressable, ScrollView, Text, TouchableOpacity, View } from 'react-native';
|
|
@@ -97,7 +98,7 @@ export default function m(props: EventOrder_lotteryProps): any {
|
|
|
97
98
|
<Pressable onPress={() => { }} style={{ flex: 1, flexDirection: 'row', alignContent: 'center', alignItems: 'center', justifyContent: 'center', paddingLeft: 50, marginLeft: 35, borderRadius: 5, padding: 10, backgroundColor: '#fff' }}>
|
|
98
99
|
<View style={{ flex: 1, marginRight: 5, }}>
|
|
99
100
|
<Text allowFontScaling={false} numberOfLines={1} ellipsizeMode='tail' style={{ fontWeight: 'bold', fontSize: 16 }} >{item.title}</Text>
|
|
100
|
-
<
|
|
101
|
+
<EventHtmltext allowFontScaling={false} style={{ fontSize: 12, color: 'grey' }}>{item.description}</EventHtmltext>
|
|
101
102
|
|
|
102
103
|
<View style={applyStyle({ marginTop: 10, alignSelf: 'flex-end', flexDirection: 'row', alignContent: 'center', alignItems: 'center' })}>
|
|
103
104
|
<TouchableOpacity onPressIn={() => {
|