Last active
September 1, 2018 06:03
-
-
Save letsar/95dd5ce4417ab9e790c66a447ab20321 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const _kDuration = const Duration(milliseconds: 4000); | |
const _kActionSize = 64.0; | |
const _kCount = 3; | |
const _kAnimInterval01 = const Interval(.00, .30); | |
const _kAnimInterval02 = const Interval(.00, .30); | |
const _kAnimInterval03 = const Interval(.30, .60); | |
const _kAnimInterval04 = const Interval(.60, .90); | |
const _kAnimInterval05 = const Interval(.60, .90); | |
const archiveAction = const IconSlideAction( | |
icon: Icons.archive, | |
color: Colors.blue, | |
caption: 'Archive', | |
); | |
const shareAction = const IconSlideAction( | |
icon: Icons.share, | |
color: Colors.indigo, | |
caption: 'Share', | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment