scaleIn constant

BloomAnimation const scaleIn

Scales element from 0.8 to 1.0 with a concurrent fade in.

Implementation

static const scaleIn = BloomAnimation(
  name: 'bloom-scale-in',
  keyframes: [
    BloomKeyframe(
        offset: 0.0, styles: {'transform': 'scale(0.8)', 'opacity': '0'}),
    BloomKeyframe(
        offset: 1.0, styles: {'transform': 'scale(1)', 'opacity': '1'}),
  ],
);