Skip to content

Commit 7cf670e

Browse files
committed
fix: input total number of lines
1 parent f8c54de commit 7cf670e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/theme/components/input.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const baseStyle = (props: any) => {
2727
bg: 'transparent',
2828
flex: 1,
2929
w: '100%',
30+
h: '100%',
3031
},
3132
_light: {
3233
placeholderTextColor: 'text.400',

src/theme/components/textarea.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
import { Platform } from 'react-native';
2-
31
const baseStyle = {
42
multiline: true,
53
p: '2',
6-
totalLines: 4,
7-
h: Platform.select({ ios: 20 }),
84
textAlignVertical: 'top',
5+
h: '20',
96
};
107

118
export default {

0 commit comments

Comments
 (0)