AiutaPresentationStyle enum
Defines how the SDK will be presented.
Values
- pageSheet → const AiutaPresentationStyle
-
The SDK will be presented in a page sheet.
This is
recommended
since iOS 13, when Apple has introduced a new modal presentation style. This allows some of the parent view to remain visible, helping people retain their original context as they interact with the sheet. Please see Best practices from Apple's HIG for more information.The parent view will be
stacked
behind the sheet, shrinking slightly and moving away from the edges of the screen.Android will behave as bottomSheet when this mode is selected.
- bottomSheet → const AiutaPresentationStyle
-
Opens the SDK in a bottom sheet. iOS has support of this mode only from version
16
. Older versions will behave aspageSheet
.This is similar to pageSheet but the parent view will not be
stacked
behind the sheet and remains fullscreen but covered by the sheet. - fullScreen → const AiutaPresentationStyle
-
Opens the SDK in a full screen mode.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent 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<
AiutaPresentationStyle> - A constant List of the values in this enum, in order of their declaration.