Add share bottom-sheet to feed and thread
This commit is contained in:
parent
3794eca88e
commit
af55a89758
14 changed files with 574 additions and 34 deletions
|
@ -1,4 +1,6 @@
|
|||
import React, {useState, useEffect} from 'react'
|
||||
import {RootSiblingParent} from 'react-native-root-siblings'
|
||||
import {GestureHandlerRootView} from 'react-native-gesture-handler'
|
||||
import * as view from './view/index'
|
||||
import {RootStoreModel, setupState, RootStoreProvider} from './state'
|
||||
import * as Routes from './view/routes'
|
||||
|
@ -20,9 +22,13 @@ function App() {
|
|||
}
|
||||
|
||||
return (
|
||||
<RootStoreProvider value={rootStore}>
|
||||
<Routes.Root />
|
||||
</RootStoreProvider>
|
||||
<GestureHandlerRootView style={{flex: 1}}>
|
||||
<RootSiblingParent>
|
||||
<RootStoreProvider value={rootStore}>
|
||||
<Routes.Root />
|
||||
</RootStoreProvider>
|
||||
</RootSiblingParent>
|
||||
</GestureHandlerRootView>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue