setAnnotationEditingToolbarItems abstract method
Replaces the annotation editing / property toolbar (the bar shown when
an annotation is selected) with items — reorder, add, or remove the
property controls / actions.
Supported on Web and Android; on iOS the style controls apply but
the note / delete menu actions are ignored (see the parity notes on
AnnotationEditingItem).
Re-callable at any time. No-op on controllers that don't support it.
onControllerReady: (controller) => controller.setAnnotationEditingToolbarItems([
AnnotationEditingItem.color,
AnnotationEditingItem.opacity,
AnnotationEditingItem.thickness,
AnnotationEditingItem.delete,
]);
Implementation
Future<void> setAnnotationEditingToolbarItems(
List<AnnotationEditingItem> items);