Link to the repository
[Only for premium members]
[Only for premium members]
Now that we have our categories, we can work on the edit form:
This will show us how to implement the following:
First, we want to add an Icon Button to our List:
return ListTile( title: Text(category.name), trailing: IconButton(onPressed: () => print("Clicked edit"), icon: Icon(Icons.edit)),);
This will add an edit icon to the right side...