Settings and activity
1 result found
-
1 vote
An error occurred while saving the comment An error occurred while saving the comment Jowhad Hossen Joy commented
My app a funny,sead,and anadar video .my app name Funshot app
An error occurred while saving the comment Jowhad Hossen Joy commented
TextFormField(
decoration: InputDecoration(
labelText: 'Add a comment',
hintText: 'Write something nice...',
border: OutlineInputBorder(),
),
maxLines: 3,
onChanged: (value) {
// comment save kora logic ekhane likhba
},
)Jowhad Hossen Joy shared this idea ·
await FirebaseFirestore.instance.collection('comments').add({
'comment': 'Besh bhalo lagse app ta!',
'timestamp': FieldValue.serverTimestamp(),
'userId': 'abc123', // optional
});