update position table, set selected table

This commit is contained in:
efrilm
2025-10-26 18:06:09 +07:00
parent 655902a659
commit 634b331716
15 changed files with 1195 additions and 61 deletions
@@ -4,4 +4,10 @@ part of 'table_loader_bloc.dart';
class TableLoaderEvent with _$TableLoaderEvent {
const factory TableLoaderEvent.fetched({@Default(false) bool isRefresh}) =
_Fetched;
const factory TableLoaderEvent.updatedPostion({
required String id,
required Offset position,
}) = _UpdatedPosition;
const factory TableLoaderEvent.setSelectedTable(Table? table) =
_SetSelectedTable;
}