AppFlowy/app_flowy/packages/flowy_infra/lib/notifier.dart
2021-11-11 20:09:09 +08:00

25 lines
436 B
Dart

import 'package:flutter/material.dart';
class PublishNotifier<T> extends ChangeNotifier {
T? _value;
set value(T newValue) {
if (_value != newValue) {
_value = newValue;
notifyListeners();
}
}
T? get currentValue => _value;
void addPublishListener(void Function(T) callback) {
super.addListener(
() {
if (_value != null) {
callback(_value!);
}
},
);
}
}