import { VLayout, Group, Panel, jsx, layoutConfig, BlurEffect, Image, Text, createRef, animate, loge, Stack, RotationXAnimation, RotationAnimation, } from "doric"; @Entry export class BlurEffectsDemo extends Panel { build(root: Group) { let ref = createRef(); { const rotation = new RotationAnimation(); rotation.fromRotation = 0; rotation.toRotation = 2; rotation.duration = 1000; rotation.repeatCount = -1; ref.current.doAnimation(context, rotation); }} /> ; } }