diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-09-23 17:52:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-23 17:52:42 -0400 |
| commit | f076064a9c064a7e2ca74be013e2174aec8a0a1e (patch) | |
| tree | ac29f2aed41e3e266b842e419d7eab898335ee39 /src/components/Content.tsx | |
| parent | f1b3c7e0ed6d3b88356026ca4aae0241920ca34d (diff) | |
| parent | 5a8e0457f1ceeed63af69a620000aaff986a1831 (diff) | |
| download | decky-lsfg-vk-f076064a9c064a7e2ca74be013e2174aec8a0a1e.tar.gz decky-lsfg-vk-f076064a9c064a7e2ca74be013e2174aec8a0a1e.zip | |
Merge pull request #177 from xXJSONDeruloXx/flatpak
Flatpak UI installer and auto overrider
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index a00a595..978f4ed 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -15,6 +15,7 @@ import { FgmodClipboardButton } from "./FgmodClipboardButton"; // import { ClipboardDisplay } from "./ClipboardDisplay"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; +import FlatpaksModal from "./FlatpaksModal"; import { ConfigurationData } from "../config/configSchema"; export function Content() { @@ -76,6 +77,10 @@ export function Content() { showModal(<NerdStuffModal />); }; + const handleShowFlatpaks = () => { + showModal(<FlatpaksModal />); + }; + return ( <PanelSection> {/* Show installation components at top when not fully installed */} @@ -165,6 +170,16 @@ export function Content() { Nerd Stuff </ButtonItem> </PanelSectionRow> + + {/* Flatpaks Button */} + <PanelSectionRow> + <ButtonItem + layout="below" + onClick={handleShowFlatpaks} + > + Flatpaks + </ButtonItem> + </PanelSectionRow> </PanelSection> ); } |
