pickBackground method

Future<void> pickBackground()

Opens an image choose popup and sets the selected file as a background.

Implementation

Future<void> pickBackground() async {
  FilePickerResult? result = await PlatformUtils.pickFiles(
    type: FileType.image,
    allowMultiple: false,
    withData: true,
    withReadStream: false,
    lockParentWindow: true,
  );

  if (result != null && result.files.isNotEmpty) {
    _settingsRepo.setBackground(result.files.first.bytes);
  }
}