From b6989a2226f24675f927005570ec4856db60aac4 Mon Sep 17 00:00:00 2001 From: ksenia312 Date: Wed, 7 Feb 2024 22:42:44 +0100 Subject: [PATCH] fix(example_full): device preview --- .../lib/presentation/components/device_preview.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/example_full/lib/presentation/components/device_preview.dart b/example_full/lib/presentation/components/device_preview.dart index d1d9585..a1657d6 100644 --- a/example_full/lib/presentation/components/device_preview.dart +++ b/example_full/lib/presentation/components/device_preview.dart @@ -5,8 +5,11 @@ import 'package:nearby_service_example_full/presentation/app.dart'; import 'package:provider/provider.dart'; class DevicePreview extends StatelessWidget { - const DevicePreview( - {super.key, required this.device, this.largeView = false}); + const DevicePreview({ + super.key, + required this.device, + this.largeView = false, + }); final NearbyDevice device; final bool largeView;