marcos930807 / awesomeDialogs

A new Flutter package project for simple a awesome dialogs
Other
339 stars 110 forks source link

Not refresh the value if date updated #24

Closed function2000 closed 4 years ago

function2000 commented 4 years ago

If I use RadioListTile in the body, and when update the value, it does not update on the screen. Looks it is stateless widget. Can you make it possible to refresh value on the screen.

marcos930807 commented 4 years ago

hi @function2000 make body a StateFull Widget and call setState inside of it., or use Change Notifier With Provider. or other state management solution.

function2000 commented 4 years ago

Thanks!