Turn home button into a 'go back to start of nav history'
This commit is contained in:
@@ -107,6 +107,12 @@ export class NavigationTabModel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
goBackToZero() {
|
||||||
|
if (this.canGoBack) {
|
||||||
|
this.index = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
goForward() {
|
goForward() {
|
||||||
if (this.canGoForward) {
|
if (this.canGoForward) {
|
||||||
this.index++
|
this.index++
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ export const MobileShell: React.FC = observer(() => {
|
|||||||
if (store.nav.tab.current.url === '/') {
|
if (store.nav.tab.current.url === '/') {
|
||||||
scrollElRef.current?.scrollToOffset({offset: 0})
|
scrollElRef.current?.scrollToOffset({offset: 0})
|
||||||
} else {
|
} else {
|
||||||
store.nav.navigate('/')
|
store.nav.tab.goBackToZero()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const onPressMenu = () => setMainMenuActive(true)
|
const onPressMenu = () => setMainMenuActive(true)
|
||||||
|
|||||||
Reference in New Issue
Block a user