forked from eden-emu/eden
18 lines
352 B
QML
18 lines
352 B
QML
import QtQuick
|
|
import QtQuick.Controls.Material
|
|
import QtQuick.Layouts
|
|
|
|
import Eden.Native.Interface
|
|
import Eden.Config
|
|
|
|
ScrollView {
|
|
id: scroll
|
|
// TODO: language, theme
|
|
ColumnLayout {
|
|
width: scroll.width - scroll.effectiveScrollBarWidth
|
|
|
|
SettingsList {
|
|
category: SettingsCategories.UiGameList
|
|
}
|
|
}
|
|
}
|