val visualTransformationPhone: VisualTransformation = remember { MaskPhone() }
val visualTransformationCpf: VisualTransformation = remember { MaskCpf() }
visualTransformation = visualTransformationPhone,
visualTransformation = visualTransformationCpf
val transformedCpf =
visualTransformationCpf.filter(AnnotatedString(textCpf.value)).text.text
val transformedPhone =
visualTransformationPhone.filter(AnnotatedString(textPhone.value)).text.text
onValueChange = { newValue ->
if (newValue.length<=11){
textPhone.value = newValue
}
},