fix(example_full): device preview

This commit is contained in:
ksenia312
2024-02-07 22:42:44 +01:00
parent f0fde5a4ce
commit b6989a2226
@@ -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;