Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 369 Bytes

File metadata and controls

9 lines (7 loc) · 369 Bytes

Next you will allow users to actually like!

In the _buildRow method, find the line that says onTap: (){}. Change it to this:

        onTap: () => pair.reference.updateData({'isFavorite': !pair.isFavorite}));

This new line updates the words database reference by changing the value of isFavorite with opposite.

Save the file, then hot-reload your app.