1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Partially fixed #113

This commit is contained in:
Zhiyuan Zheng
2021-05-09 21:59:03 +02:00
parent 006edd5c87
commit 0b659913dc
62 changed files with 2308 additions and 703 deletions

View File

@ -168,7 +168,7 @@ const Screens: React.FC<Props> = ({ localCorrupt }) => {
options={{
stackPresentation: 'transparentModal',
stackAnimation: 'fade',
headerShown: false // Android
headerShown: false
}}
/>
<Stack.Screen
@ -177,7 +177,7 @@ const Screens: React.FC<Props> = ({ localCorrupt }) => {
options={{
stackPresentation: 'transparentModal',
stackAnimation: 'fade',
headerShown: false // Android
headerShown: false
}}
/>
<Stack.Screen
@ -185,7 +185,7 @@ const Screens: React.FC<Props> = ({ localCorrupt }) => {
component={ScreenCompose}
options={{
stackPresentation: 'fullScreenModal',
headerShown: false // Android
headerShown: false
}}
/>
<Stack.Screen
@ -194,7 +194,7 @@ const Screens: React.FC<Props> = ({ localCorrupt }) => {
options={{
stackPresentation: 'fullScreenModal',
stackAnimation: 'fade',
headerShown: false // Android
headerShown: false
}}
/>
</Stack.Navigator>
@ -206,6 +206,3 @@ const Screens: React.FC<Props> = ({ localCorrupt }) => {
}
export default React.memo(Screens, () => true)
function toast (arg0: { type: string; content: string; autoHide: boolean }) {
throw new Error('Function not implemented.')
}