tooltip property
String
get
tooltip
Implementation
String get tooltip {
switch (this) {
case AnnotationMode.view:
return 'View mode - Navigate the PDF';
case AnnotationMode.draw:
return 'Draw mode - Freehand drawing';
case AnnotationMode.note:
return 'Note mode - Add text notes';
case AnnotationMode.shape:
return 'Shape mode - Add shapes';
case AnnotationMode.highlight:
return 'Highlight mode - Create highlights';
case AnnotationMode.select:
return 'Select mode - Edit annotations';
}
}