mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00

* refactor: database filter bloc * refactor: filter choice chips * fix: update field info in filters * refactor: simplify select option filter panel * test: fix tests * refactor: filter choice chips * test: add bloc tests * refactor: date time filter bloc and choice chip
6 lines
156 B
Dart
6 lines
156 B
Dart
import 'package:fixnum/fixnum.dart';
|
|
|
|
extension DateConversion on Int64 {
|
|
DateTime toDateTime() => DateTime.fromMillisecondsSinceEpoch(toInt() * 1000);
|
|
}
|