1import { Text, Column, Component, Color, Curve } from "@ohos.arkui.component" 2import { Entry } from "@ohos.arkui.component" 3 4@Entry 5@Component 6struct AnimatablePropertyExample { 7 build() { 8 Column() { 9 Text("AnimatableProperty") 10 .backgroundColor(Color.Red) 11 .animation({ duration: 2000, curve: Curve.Ease }) 12 .fontSize(20) 13 .animation({ duration: 2000, curve: Curve.Ease }) 14 .width("100%") 15 } 16 } 17}