Warning, /maui/index-fm/src/widgets/previewer/ImagePreview.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.14
0002 import QtQuick.Controls 2.14
0003
0004 import org.mauikit.controls 1.3 as Maui
0005
0006 Loader
0007 {
0008 asynchronous: true
0009 sourceComponent: iteminfo.mime === "image/gif" || iteminfo.mime === "image/avif" ? _animatedImgComponent : _imgComponent
0010
0011 Component
0012 {
0013 id: _animatedImgComponent
0014 Maui.AnimatedImageViewer
0015 {
0016 source: currentUrl
0017 }
0018 }
0019
0020 Component
0021 {
0022 id: _imgComponent
0023 Maui.ImageViewer
0024 {
0025 source: currentUrl
0026 }
0027 }
0028 }
0029
0030
0031