-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented onDragUpdate, Release 0.7.3
- Loading branch information
Showing
18 changed files
with
140 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c | ||
|
||
COCOAPODS: 1.11.2 | ||
COCOAPODS: 1.11.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
part of 'dismissible_page.dart'; | ||
|
||
/// | ||
enum DismissiblePageDismissDirection { | ||
/// The [DismissiblePageDirection] can be dismissed by dragging either up or down. | ||
/// Can be dismissed by dragging either up or down. | ||
vertical, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging either left or right. | ||
/// Can be dismissed by dragging either left or right. | ||
horizontal, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging in the reverse of the | ||
/// Can be dismissed by dragging in the reverse of the | ||
/// reading direction (e.g., from right to left in left-to-right languages). | ||
endToStart, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging in the reading direction | ||
/// Can be dismissed by dragging in the reading direction | ||
/// (e.g., from left to right in left-to-right languages). | ||
startToEnd, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging up only. | ||
/// Can be dismissed by dragging up only. | ||
up, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging down only. | ||
/// Can be dismissed by dragging down only. | ||
down, | ||
|
||
/// The [DismissiblePageDirection] can be dismissed by dragging any direction. | ||
/// Can be dismissed by dragging any direction. | ||
multi, | ||
|
||
/// The [DismissiblePageDirection] cannot be dismissed by dragging. | ||
/// Cannot be dismissed by dragging. | ||
none | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.