diff options
author | Eric Bailey <git@esb.lol> | 2024-06-17 13:21:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 13:21:35 -0500 |
commit | 7e88d0d7a6c7ee81c218bab0ad7fa3a8e63025cf (patch) | |
tree | 362d94b706c0f47ac7520031ca4d3a4eeac8e6c3 /src | |
parent | 332524b7dec18b5e19edacdb976467d6725a5df0 (diff) | |
download | voidsky-7e88d0d7a6c7ee81c218bab0ad7fa3a8e63025cf.tar.zst |
Onboarding fixes (#4508)
* Add extra padding to bottom of profile step * Make profile pic gen higher res
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Onboarding/Layout.tsx | 2 | ||||
-rw-r--r-- | src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx index 75e2f99fc..02b207303 100644 --- a/src/screens/Onboarding/Layout.tsx +++ b/src/screens/Onboarding/Layout.tsx @@ -152,7 +152,7 @@ export function Layout({children}: React.PropsWithChildren<{}>) { {children} </View> - <View style={{height: 200}} /> + <View style={{height: 400}} /> </View> </View> </ScrollView> diff --git a/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx b/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx index 29ba39a0b..d1d1af6d9 100644 --- a/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx +++ b/src/screens/Onboarding/StepProfile/PlaceholderCanvas.tsx @@ -5,7 +5,7 @@ import ViewShot from 'react-native-view-shot' import {useAvatar} from '#/screens/Onboarding/StepProfile/index' import {atoms as a} from '#/alf' -const SIZE_MULTIPLIER = 1.5 +const SIZE_MULTIPLIER = 5 export interface PlaceholderCanvasRef { capture: () => Promise<string> |