DragAnchor enum Null safety

Where the Draggable should be anchored during a drag.

This has been replaced by the more configurable DragAnchorStrategy.

Inheritance
Annotations
  • @Deprecated('Use dragAnchorStrategy instead. ' 'This feature was deprecated after v2.1.0-10.0.pre.')

Constructors

DragAnchor()
const

Values

child → const DragAnchor

Display the feedback anchored at the position of the original child.

Replaced by childDragAnchorStrategy.

Deprecated('Use childDragAnchorStrategy instead. ' 'This feature was deprecated after v2.1.0-10.0.pre.')">@Deprecated('Use childDragAnchorStrategy instead. ' 'This feature was deprecated after v2.1.0-10.0.pre.')
DragAnchor()
pointer → const DragAnchor

Display the feedback anchored at the position of the touch that started the drag.

Replaced by pointerDragAnchorStrategy.

Deprecated('Use pointerDragAnchorStrategy instead. ' 'This feature was deprecated after v2.1.0-10.0.pre.')">@Deprecated('Use pointerDragAnchorStrategy instead. ' 'This feature was deprecated after v2.1.0-10.0.pre.')
DragAnchor()

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<DragAnchor>
A constant List of the values in this enum, in order of their declaration.
[child, pointer]