Home button scrolls to top when on home page
This commit is contained in:
parent
8dc8200f07
commit
d7a75a2062
5 changed files with 29 additions and 16 deletions
|
@ -1,4 +1,5 @@
|
|||
import React from 'react'
|
||||
import React, {MutableRefObject} from 'react'
|
||||
import {FlatList} from 'react-native'
|
||||
import {IconProp} from '@fortawesome/fontawesome-svg-core'
|
||||
import {Home} from './screens/Home'
|
||||
import {Search} from './screens/Search'
|
||||
|
@ -15,6 +16,7 @@ import {Settings} from './screens/Settings'
|
|||
export type ScreenParams = {
|
||||
params: Record<string, any>
|
||||
visible: boolean
|
||||
scrollElRef: MutableRefObject<FlatList<any> | undefined>
|
||||
}
|
||||
export type Route = [React.FC<ScreenParams>, IconProp, RegExp]
|
||||
export type MatchResult = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue