Es importante interpretar el código correctamente previamente a utilizarlo a tu trabajo si ttienes algo que aportar puedes comentarlo.
Ejemplo 1: checkbox en flutter
CheckboxListTile(
title: Text("title text"),
value: checkedValue,
onChanged: (newValue)
setState(()
checkedValue = newValue;
);
,
controlAffinity: ListTileControlAffinity.leading, // <-- leading Checkbox
)
Ejemplo 2: casilla de verificación flutter
bool _value = true;
Checkbox(
value: _value,
onChanged: (bool newValue)
setState(()
_value = newValue;
);
,
)
valoraciones y reseñas
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)