feat: Enable users to upload attire photos via camera or gallery.

This commit is contained in:
Achintha Isuru
2026-02-25 12:58:30 -05:00
parent 19b82ff73a
commit ed2b4f0563
9 changed files with 112 additions and 31 deletions

View File

@@ -4,7 +4,7 @@ import 'package:krow_domain/krow_domain.dart';
/// Service for capturing photos and videos using the device camera.
class CameraService extends BaseDeviceService {
/// Creates a [CameraService].
CameraService(this._picker);
CameraService(ImagePicker picker) : _picker = picker;
final ImagePicker _picker;