修改跳转方式
This commit is contained in:
parent
09fd4459d8
commit
43eb230dc6
|
@ -68,6 +68,12 @@ export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
||||||
screen: "JoinStreamer",
|
screen: "JoinStreamer",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
} else if (
|
||||||
|
linkStr.indexOf("CompleteStreamerInformation") != -1
|
||||||
|
) {
|
||||||
|
navigation.navigate("StreamerVerification", {
|
||||||
|
screen: "CompleteStreamerInformation",
|
||||||
|
});
|
||||||
}
|
}
|
||||||
navigation.navigate(linkStr);
|
navigation.navigate(linkStr);
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,7 +87,7 @@ export default function AfterSubmitGuildVerification({ navigation, route }) {
|
||||||
</View>
|
</View>
|
||||||
<View style={tailwind("flex flex-col w-full px-4")}>
|
<View style={tailwind("flex flex-col w-full px-4")}>
|
||||||
<Button
|
<Button
|
||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.navigate("My")}
|
||||||
color="#FFFFFF1A"
|
color="#FFFFFF1A"
|
||||||
radius="999"
|
radius="999"
|
||||||
size="md"
|
size="md"
|
||||||
|
|
|
@ -103,7 +103,7 @@ export default function AfterSubmitStreamerVerification({ navigation, route }) {
|
||||||
</View>
|
</View>
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.navigate("My")}
|
||||||
color="#FFFFFF1A"
|
color="#FFFFFF1A"
|
||||||
radius="999"
|
radius="999"
|
||||||
size="md"
|
size="md"
|
||||||
|
|
Loading…
Reference in New Issue