Skip to content

RepositionThemeTransition

Animate this item when its layout x/y change.

import QWinUI3.Extras · src/extras/QWinUI3/Extras/RepositionThemeTransition.qml

Category: Media & platform · Library: v2.80

← Component index

Extends Item.

Example

Flow {
    Repeater {
        model: 6
        RepositionThemeTransition {
            width: 72; height: 72
            Rectangle { anchors.fill: parent; radius: 8; color: Theme.accent }
        }
    }
}

// --- API ---
// properties: animatePosition

Notes

Wrap Flow/Grid children. Honors Theme.reducedMotion.

API

Properties

Name Type Description
content alias
animatePosition bool Animate when this item's x/y change (e.g. Flow / Grid reflow)

Signals

No custom signals (use inherited signals from the base type).

Methods

No custom methods (use inherited methods from the base type).

Inherited from Item

Also available (base type / Qt Quick Controls):

  • width / height
  • visible
  • anchors

Generated from module sources by scripts/generate_component_docs.py — do not edit by hand.