I am trying to show snackbar when user click the button but I can't do that.
I am not getting warning or error, I don't know what I am missing
here is my code:
RaisedButton(
onPressed: () {
if (formKey.currentState.validate()) {
formKey.currentState.save();
dbHelper
.addNote(Notes(categoryID, notBaslik,
notIcerik, "", selectedOncelik))
.then((savedNoteID) {
if (savedNoteID != 0) {
_scaffoldKey.currentState
.showSnackBar(SnackBar(
content: Text("Not Eklendi"),
duration: Duration(seconds: 2),
));
} else {}
Navigator.pop(context);
});
}
},
child: Text("Kaydet"),
color: Colors.red),