Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dismiss keyboard when opening dialog

+3 -2
+2 -1
src/components/forms/HostingProvider.tsx
··· 1 1 import React from 'react' 2 - import {View} from 'react-native' 2 + import {Keyboard, View} from 'react-native' 3 3 import {msg} from '@lingui/macro' 4 4 import {useLingui} from '@lingui/react' 5 5 ··· 27 27 const {_} = useLingui() 28 28 29 29 const onPressSelectService = React.useCallback(() => { 30 + Keyboard.dismiss() 30 31 serverInputControl.open() 31 32 if (onOpenDialog) { 32 33 onOpenDialog()
+1 -1
src/view/com/auth/server-input/index.tsx
··· 67 67 return ( 68 68 <Dialog.Outer 69 69 control={control} 70 - nativeOptions={{sheet: {snapPoints: ['80', '100%']}}} 70 + nativeOptions={{sheet: {snapPoints: ['100%']}}} 71 71 onClose={onClose}> 72 72 <Dialog.Handle /> 73 73