We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c54de commit 7cf670eCopy full SHA for 7cf670e
src/theme/components/input.ts
@@ -27,6 +27,7 @@ const baseStyle = (props: any) => {
27
bg: 'transparent',
28
flex: 1,
29
w: '100%',
30
+ h: '100%',
31
},
32
_light: {
33
placeholderTextColor: 'text.400',
src/theme/components/textarea.ts
@@ -1,11 +1,8 @@
1
-import { Platform } from 'react-native';
2
-
3
const baseStyle = {
4
multiline: true,
5
p: '2',
6
- totalLines: 4,
7
- h: Platform.select({ ios: 20 }),
8
textAlignVertical: 'top',
+ h: '20',
9
};
10
11
export default {
0 commit comments