diff --git a/example/lib/main.dart b/example/lib/main.dart index b6230c8c..d1f39ecc 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; import 'package:photo_manager/photo_manager.dart'; -import 'package:image_scanner_example/photos.dart'; +import 'photos.dart'; void main() => runApp(new MyApp()); diff --git a/example/lib/photos.dart b/example/lib/photos.dart index 8b560007..608dbb87 100644 --- a/example/lib/photos.dart +++ b/example/lib/photos.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; import 'package:photo_manager/photo_manager.dart'; -import 'package:image_scanner_example/photo_list.dart'; +import 'photo_list.dart'; class PhotoPage extends StatefulWidget { final AssetPathEntity pathEntity; @@ -22,4 +22,4 @@ class _PhotoPageState extends State { body: PhotoList(photos: widget.photos), ); } -} \ No newline at end of file +}