Skip to content

Instantly share code, notes, and snippets.

View elislade's full-sized avatar
💭
Recalibrating...

Eli Slade elislade

💭
Recalibrating...
View GitHub Profile
@elislade
elislade / ContentView.swift
Last active March 28, 2022 16:46
Swift UI Floating Window
struct ContentView: View {
@State var openWindow = false
var body: some View {
let window = FloatingWindow(
isOpen: $openWindow,
title: "Title",
button: Text("ƒx").font(.system(size: 18, weight: .bold, design: .monospaced)),
content: EmptyView()
).padding()