|
@@ -132,7 +132,15 @@ const ResultDetailPage = () => {
|
|
|
style={{ flex: 1, width: '100%' }}
|
|
style={{ flex: 1, width: '100%' }}
|
|
|
/>
|
|
/>
|
|
|
<View className="absolute top-14 left-8 ">
|
|
<View className="absolute top-14 left-8 ">
|
|
|
- <Pressable onPress={() => router.navigate('/')}>
|
|
|
|
|
|
|
+ <Pressable
|
|
|
|
|
+ onPress={() => {
|
|
|
|
|
+ if (router.canGoBack()) {
|
|
|
|
|
+ router.back();
|
|
|
|
|
+ } else {
|
|
|
|
|
+ router.replace('./');
|
|
|
|
|
+ }
|
|
|
|
|
+ }}
|
|
|
|
|
+ >
|
|
|
<PreviousPageSvg />
|
|
<PreviousPageSvg />
|
|
|
</Pressable>
|
|
</Pressable>
|
|
|
</View>
|
|
</View>
|