react-native-material-kit
react-native-material-kit copied to clipboard
Glitch!!!
When i try to use MKTextField.textfieldWithFloatingLabel , I am getting weird output.
Sometimes with congested text and label

Sometimes with broken underline/partially drawn underline

Sometimes it works perfect

Below given full code
import React, {Component} from 'react';
import { View} from 'react-native';
import {MKTextField} from 'react-native-material-kit';
const BaseTextField = MKTextField.textfieldWithFloatingLabel()
.build();
type PropTypes = {}
export default class Lab extends Component<PropTypes> {
render() {
return (
<View style={{flex: 1,padding:10}}>
<BaseTextField
placeholder="Name"
/>
</View>
);
}
}
Is this a bug, or am i doing something wrong ?