ArView constructor
const
ArView({
- Key? key,
- required List<
ArAnnotation> annotations, - required AnnotationViewBuilder annotationViewBuilder,
- required Size frame,
- required ChangeLocationCallback onLocationChange,
- double annotationWidth = 200,
- double annotationHeight = 75,
- double maxVisibleDistance = 1500,
- bool showDebugInfoSensor = true,
- double paddingOverlap = 5,
- double? yOffsetOverlap,
- required double minDistanceReload,
- bool scaleWithDistance = true,
Implementation
const ArView({
Key? key,
required this.annotations,
required this.annotationViewBuilder,
required this.frame,
required this.onLocationChange,
this.annotationWidth = 200,
this.annotationHeight = 75,
this.maxVisibleDistance = 1500,
this.showDebugInfoSensor = true,
this.paddingOverlap = 5,
this.yOffsetOverlap,
required this.minDistanceReload,
this.scaleWithDistance = true,
}) : super(key: key);