
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
삭제 아이콘을 클릭 하면 깜박이구 삭제가 되지 않습니다. 동영상 강의를 보고 그대로 따라 했는데도 계속 같은 증상인데 어디서 잘 못 된건지.....확인 부탁드립니다.

작성한 코드 및 에러 메세지
// Generated code for this IconButton Widget...
FlutterFlowIconButton(
borderRadius: 8,
buttonSize: 40,
icon: Icon(
Icons.delete_sharp,
color: FlutterFlowTheme.of(context).primaryText,
size: 24,
),
onPressed: () async {
var confirmDialogResponse = await showDialog<bool>(
context: context,
builder: (alertDialogContext) {
return AlertDialog(
title: Text('삭제여부'),
content: Text('진짜삭제함?'),
actions: [
TextButton(
onPressed: () => Navigator.pop(alertDialogContext, false),
child: Text('아니오'),
),
TextButton(
onPressed: () => Navigator.pop(alertDialogContext, true),
child: Text('예'),
),
],
);
},
) ??
false;
if (confirmDialogResponse) {
await listViewFormulaHistoryRecord.reference.delete();
}
},
)
