11 lines
163 B
QML
11 lines
163 B
QML
import QtQuick
|
|
|
|
Rectangle {
|
|
width: AnimatedImage.width
|
|
height: AnimatedImage.height
|
|
|
|
AnimatedImage {
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
}
|