1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-28 07:22:50 -05:00

uncomment toast, and format

This commit is contained in:
bbedward
2025-07-24 19:46:05 -04:00
parent 762785b27a
commit fc52aa2c7a
21 changed files with 575 additions and 427 deletions

View File

@@ -48,8 +48,11 @@ Item {
categorySelected(modelData);
}
}
}
}
}
// Two-row layout (for SpotlightModal organized style)
@@ -66,7 +69,7 @@ Item {
spacing: Theme.spacingS
Repeater {
model: parent.topRowCategories.filter(cat => {
model: parent.topRowCategories.filter((cat) => {
return categories.includes(cat);
})
@@ -95,8 +98,11 @@ Item {
categorySelected(modelData);
}
}
}
}
}
// Bottom row: Internet, Media, Office, Settings, System (5 items)
@@ -107,7 +113,7 @@ Item {
spacing: Theme.spacingS
Repeater {
model: parent.bottomRowCategories.filter(cat => {
model: parent.bottomRowCategories.filter((cat) => {
return categories.includes(cat);
})
@@ -136,8 +142,13 @@ Item {
categorySelected(modelData);
}
}
}
}
}
}
}
}