diff --git a/lib/src/components/table.dart b/lib/src/components/table.dart index 0d8a016..0db90df 100644 --- a/lib/src/components/table.dart +++ b/lib/src/components/table.dart @@ -391,6 +391,7 @@ class _ShadTableState extends State { hoveredRowIndex.value = index; }, onExit: (p) { + if(!mounted) return; if (previousPointerOffset == p.position) return; hoveredRowIndex.value = null; },