|
@@ -193,14 +193,24 @@ export default class SummaryV2 extends Component {
|
|
|
render() {
|
|
render() {
|
|
|
if (this.state.isPendding) {
|
|
if (this.state.isPendding) {
|
|
|
return (
|
|
return (
|
|
|
- <View style={styles.container}>
|
|
|
|
|
|
|
+ <ScrollView
|
|
|
|
|
+ style={styles.container}
|
|
|
|
|
+ contentContainerStyle={ui.flex1}
|
|
|
|
|
+ refreshControl={
|
|
|
|
|
+ <RefreshControl
|
|
|
|
|
+ {...MyRefreshProps()}
|
|
|
|
|
+ refreshing={this.state.refreshing}
|
|
|
|
|
+ onRefresh={() => this.onRefresh()}
|
|
|
|
|
+ />
|
|
|
|
|
+ }>
|
|
|
<View style={styles.processContent}>
|
|
<View style={styles.processContent}>
|
|
|
<TextView style={styles.processTitle}>{$t("receipt.processTitle")}</TextView>
|
|
<TextView style={styles.processTitle}>{$t("receipt.processTitle")}</TextView>
|
|
|
<TextView style={styles.processText}>{$t("receipt.processMessage1")}</TextView>
|
|
<TextView style={styles.processText}>{$t("receipt.processMessage1")}</TextView>
|
|
|
- <TextView style={styles.processText}>
|
|
|
|
|
|
|
+ <TextView style={styles.processText}>Please pull down refresh this page after a few minutes to view your receipt.</TextView>
|
|
|
|
|
+ {/* <TextView style={styles.processText}>
|
|
|
{$t("receipt.processMessage2")}
|
|
{$t("receipt.processMessage2")}
|
|
|
<Text style={[ui.bold, ui.underline]} onPress={() => this.toTransaction()}>{$t("receipt.processMessage3")}</Text>.
|
|
<Text style={[ui.bold, ui.underline]} onPress={() => this.toTransaction()}>{$t("receipt.processMessage3")}</Text>.
|
|
|
- </TextView>
|
|
|
|
|
|
|
+ </TextView> */}
|
|
|
<TextView style={styles.processText}>{$t("receipt.processMessage4")}</TextView>
|
|
<TextView style={styles.processText}>{$t("receipt.processMessage4")}</TextView>
|
|
|
</View>
|
|
</View>
|
|
|
<View style={styles.bottomButton}>
|
|
<View style={styles.bottomButton}>
|
|
@@ -209,7 +219,7 @@ export default class SummaryV2 extends Component {
|
|
|
elevation={1.5}
|
|
elevation={1.5}
|
|
|
onClick={() => this.toRating()}/>
|
|
onClick={() => this.toRating()}/>
|
|
|
</View>
|
|
</View>
|
|
|
- </View>
|
|
|
|
|
|
|
+ </ScrollView>
|
|
|
)
|
|
)
|
|
|
} else {
|
|
} else {
|
|
|
return (
|
|
return (
|