Posts by Roberto Alves Neto • 1 point
2 posts
-
-3
votes1
answer45
viewsQ: edit python function
I’m writing an algorithm that calculates the average of continuous variables and I pass to it a function with the specific function: def media_variavel_continua(func, ini, fim): return quad(func,…
-
0
votes1
answer365
viewsQ: Automatic and real-time validation of each Text field
I want every TextFormField is validated individually and in real time as the user type, I got this behavior using TextEditingController and updating the errorText of each TextFormField as validated…