Warning, /maui/mauikit/src/controls.6/TabViewItem.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick.Controls
0002 import QtQuick.Layouts
0003 import QtQuick
0004 
0005 import org.mauikit.controls 1.3 as Maui
0006 
0007 /**
0008  * @inherit QtQuick.Loader
0009  * @brief Just a basic wrapper around a QQC2 Loader, to put in a TabView view and lazy-load it, only when it is the current view or already has been activated.
0010  * 
0011  * This can be used to lazy loading tab views, used with the TabView::addTab silent mode.
0012  */
0013 Loader
0014 {
0015     id: control
0016     
0017     focus: true
0018     active: ListView.isCurrentItem || item
0019 }