type 'List<dynamic>' is not a subtype of type 'String'
sidrahassanpk opened this issue · 1 comments
sidrahassanpk commented
Here is the the code line which is causing error:-
subtitle: Text("Rs. " + s.data[index]["price"] + "/" + s.data[index]["tags"]),
Following is the error:-
type 'List<dynamic>' is not a subtype of type 'String'
When trying to display data from Tags, Categories above error is displayed.
samarthagarwal commented
This is not an issue in the package. You are passing a List
where the Text
widget expects a String
. Closing as unrelated.