Relocate code to related packages

This commit is contained in:
Ming Ming 2024-05-11 18:38:28 +08:00
parent 65a1a02926
commit 9e3ec0bfc3
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,6 @@ import 'package:nc_photos/help_utils.dart' as help_util;
import 'package:nc_photos/k.dart' as k;
import 'package:nc_photos/np_api_util.dart';
import 'package:nc_photos/object_extension.dart';
import 'package:nc_photos/pixel_image_provider.dart';
import 'package:nc_photos/theme.dart';
import 'package:nc_photos/url_launcher_util.dart';
import 'package:nc_photos/widget/handler/permission_handler.dart';

View file

@ -2,11 +2,11 @@ import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import 'package:nc_photos/pixel_image_provider.dart';
import 'package:nc_photos/widget/image_editor/transform_toolbar.dart';
import 'package:np_codegen/np_codegen.dart';
import 'package:np_platform_image_processor/np_platform_image_processor.dart';
import 'package:np_platform_raw_image/np_platform_raw_image.dart';
import 'package:np_ui/np_ui.dart';
part 'crop_controller.g.dart';

View file

@ -6,6 +6,7 @@ export 'src/app_bar_title_container.dart';
export 'src/asset_icon.dart';
export 'src/fancy_option_picker.dart';
export 'src/material3.dart';
export 'src/pixel_image_provider.dart';
export 'src/shimmer.dart';
export 'src/stateful_slider.dart';
export 'src/switch_form_field.dart';

View file

@ -5,7 +5,7 @@ import 'package:flutter/rendering.dart';
/// ImageProvider for raw RGBA pixels
class PixelImage extends ImageProvider<PixelImage> {
PixelImage(
const PixelImage(
this.rgba,
this.width,
this.height, {
@ -13,7 +13,7 @@ class PixelImage extends ImageProvider<PixelImage> {
});
@override
obtainKey(ImageConfiguration configuration) =>
Future<PixelImage> obtainKey(ImageConfiguration configuration) =>
SynchronousFuture<PixelImage>(this);
@override