camView title

null_safety
小赖 4 years ago
parent b1f5979099
commit c6eadb8a0e

@ -12,14 +12,16 @@ Future<File> camFile({double maxHeight = 3000, double maxWidth = 3000}) async {
} }
Future<File> camView(BuildContext context, Future<File> camView(BuildContext context,
{double maxHeight = 3000, double maxWidth = 3000}) async { {double maxHeight = 3000,
double maxWidth = 3000,
@required String title}) async {
File file = await camFile(maxHeight: maxHeight, maxWidth: maxWidth); File file = await camFile(maxHeight: maxHeight, maxWidth: maxWidth);
if (file == null) return null; if (file == null) return null;
return await Navigator.push(context, PageRouteBuilder( return await Navigator.push(context, PageRouteBuilder(
pageBuilder: (context, animation, secondAnimation) { pageBuilder: (context, animation, secondAnimation) {
return FadeTransition( return FadeTransition(
opacity: animation, opacity: animation,
child: CameraView(file: file, title: '照片选择器'), child: CameraView(file: file, title: title),
); );
}, },
)); ));

Loading…
Cancel
Save