I have only designed this one list ListView design, which is used by listview.builder method to display all the data in the database.
On the custom widget implementation there is Text widget with comment this need to be updated. When the app is called upon with onTap method, how to update the Text widget of that particular Listview.builder item only out of many other.
My question is:- When I press the plus or minus button in any of the widget item within the custom widget, how can I update only the Text widget its property/value within that custom widget in the listview.builder ? How can I keep the track of the button of the list item in the listview.builder that I have pressed and update the text widget within that list item only?
Note:- When I press any one plus or minus button in the list every text value is updated. I cannot change any specific text widget within custom widget.
Stackoverflow Link: - https://stackoverflow.com/questions/70597495/how-to-show-edit-or-delete-widget-property-of-widget-in-listview-builder-when-a