Skip to content

Commit

Permalink
Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
kra-mo committed Dec 13, 2024
1 parent 4d2b47f commit 009e2c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/widgets/unique/image.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:typed_data';
import 'dart:math';

import 'package:flutter/material.dart';

Expand Down Expand Up @@ -28,7 +27,7 @@ Widget getImageView(
curve: Curves.easeOutQuint,
child: editedImageData != null
? GestureDetector(
onTap: () => showFullScreenViewer(context, editedImageData!),
onTap: () => showFullScreenViewer(context, editedImageData),
child: InteractiveViewer(
clipBehavior:
constraints.maxWidth > 600 ? Clip.none : Clip.hardEdge,
Expand Down

0 comments on commit 009e2c3

Please sign in to comment.