Skip to content

Commit cf15273

Browse files
committed
avoiding wrap on header placeholder
1 parent fbfd210 commit cf15273

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

app/client/mobile/src/assemble/Assemble.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ export function Assemble({close, openConversation}: {close: () => void; openConv
8686
autoComplete="off"
8787
autoCorrect={false}
8888
dense={true}
89+
multiline={false}
90+
numberofLines={1}
8991
placeholder={state.strings.addSubject}
9092
left={<TextInput.Icon style={styles.icon} icon="edit" />}
9193
value={subject}

app/client/mobile/src/settings/SettingsSmall.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ export function SettingsSmall({setupNav}: {setupNav: {back: () => void; next: ()
832832
<View style={styles.navPress} />
833833
</View>
834834
<View style={styles.slider}>
835-
<Slider minimumValue={-100} maximumValue={100} minimumTrackTintColor={theme.colors.primary} value={state.keyboardOffset} onSlidingComplete={val => actions.setKeyboardOffset(val)} />
835+
<Slider minimumValue={-128} maximumValue={128} minimumTrackTintColor={theme.colors.primary} value={state.keyboardOffset} onSlidingComplete={val => actions.setKeyboardOffset(val)} />
836836
</View>
837837
</Surface>
838838
</View>

0 commit comments

Comments
 (0)