회원목록

This commit is contained in:
2025-08-01 16:45:26 +09:00
parent a996def67a
commit ed8c7eacba
191 changed files with 17491 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import 'dart:async';
class EventBus {
static final EventBus _instance = EventBus._internal();
factory EventBus() => _instance;
EventBus._internal();
final _streamController = StreamController.broadcast();
Stream get stream => _streamController.stream;
void fire(dynamic event) {
_streamController.add(event);
}
void dispose() {
_streamController.close();
}
}
// 이벤트 클래스들
class ClubChangedEvent {
final String clubId;
ClubChangedEvent(this.clubId);
}