moxxy/lib/ui/bloc/crop_event.dart
Alexander "PapaTutuWawa f094a326ac feat(ui): Switch cropping libraries
This makes the avatar cropper much more consistent
with the background cropper. Fixes #168.
2022-11-26 18:40:46 +01:00

13 lines
242 B
Dart

part of 'crop_bloc.dart';
abstract class CropEvent {}
class ImageCroppedEvent extends CropEvent {}
class ResetImageEvent extends CropEvent {}
class SetImageEvent extends CropEvent {
SetImageEvent(this.image);
final Uint8List image;
}