We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i try to use MKTextField.textfieldWithFloatingLabel , I am getting weird output.
MKTextField.textfieldWithFloatingLabel
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 ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
Is this a bug, or am i doing something wrong ?
The text was updated successfully, but these errors were encountered: