Daniel Gah
Daniel Gah
I want to detect an empty list of items, using `FirestoreListView`, in order to present a Text widget to the screen. The official `FirestoreListView` dart API documentation mentions that the...
I need to support two different environments (different baseUrl). Retrofit code generation is based on constant baseUrl. It would be great to have the ability to generate code that will...
My like button: ``` LikeButton( onTap: (value) { onGroupVotePress(document); return Future.value(!value); }, ), ``` When I'm running my `onGroupVotePress` function my like_button animation crashes. My `onGroupVotePress` function: ``` void onGroupVotePress(DocumentSnapshot...