Duration

Utilities for controlling the duration of an animation.

The duration constants are defined inside StiloDuration
name duration
d75
75ms
d100
100ms
d150
150ms
d200
200ms
d300
300ms
d500
500ms
d700
700ms
d1000
1000ms
d1200
1200ms
d1500
1500ms
d2000
2000ms
d3000
3000ms
d5000
5000ms
d10000
10000ms

Usage Example

Center(
    child: Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
        AnimatedOpacity(
          opacity: 1.0,
          duration: StiloDuration.d700,
          child: Container(
            width: StiloWidth.w64,
            height: StiloHeight.h36,
            decoration: BoxDecoration(
              color: StiloColor.blue[500],
              borderRadius: StiloBorderRadius.allMd,
              boxShadow: StiloBoxShadow.xl,
            ),
          ),
        ),
      ],
    ),
  )