Skip to content

Instantly share code, notes, and snippets.

View thc282's full-sized avatar
🎮
Gaming Student

thc282

🎮
Gaming Student
View GitHub Profile
@thc282
thc282 / CustomTextField.kt
Last active April 13, 2024 18:22
JetPack Compose Customize TextField + Error Message (Fix Text cutting when height is small) [Default style = OutlinedTextField] <Android>
var email by remember { mutableStateOf("") }
var isEmailValid by remember { mutableStateOf(false) }
//Calling the function
CustomOutlinedTextField(
value = email,
onValueChange = {
email = it
isEmailValid = isValidEmail(it)
},