Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

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

[๐Ÿด] A few tweaks to message input on native (#4035)

* tweaks

* only apply the padding on ios

* use a hitslop of 10 instead

* version bump

authored by

Hailey and committed by
GitHub
9499d434 aded49f6

+10 -2
+1 -1
package.json
··· 1 1 { 2 2 "name": "bsky.app", 3 - "version": "1.82.0", 3 + "version": "1.83.0", 4 4 "private": true, 5 5 "engines": { 6 6 "node": ">=18"
+9 -1
src/screens/Messages/Conversation/MessageInput.tsx
··· 19 19 useMessageDraft, 20 20 useSaveMessageDraft, 21 21 } from '#/state/messages/message-drafts' 22 + import {isIOS} from 'platform/detection' 22 23 import * as Toast from '#/view/com/util/Toast' 23 24 import {atoms as a, useTheme} from '#/alf' 24 25 import {PaperPlane_Stroke2_Corner0_Rounded as PaperPlane} from '#/components/icons/PaperPlane' ··· 97 98 value={message} 98 99 multiline={true} 99 100 onChangeText={setMessage} 100 - style={[a.flex_1, a.text_md, a.px_sm, t.atoms.text, {maxHeight}]} 101 + style={[ 102 + a.flex_1, 103 + a.text_md, 104 + a.px_sm, 105 + t.atoms.text, 106 + {maxHeight, paddingBottom: isIOS ? 5 : 0}, 107 + ]} 101 108 keyboardAppearance={t.name === 'light' ? 'light' : 'dark'} 102 109 scrollEnabled={isInputScrollable} 103 110 blurOnSubmit={false} 104 111 onFocus={scrollToEnd} 105 112 onContentSizeChange={onInputLayout} 106 113 ref={inputRef} 114 + hitSlop={HITSLOP_10} 107 115 /> 108 116 <Pressable 109 117 accessibilityRole="button"