Skip to content

Instantly share code, notes, and snippets.

@stephancasas
Last active January 31, 2025 21:43
Show Gist options
  • Save stephancasas/69adfff402437d4e0bafa3b3ba5a8cda to your computer and use it in GitHub Desktop.
Save stephancasas/69adfff402437d4e0bafa3b3ba5a8cda to your computer and use it in GitHub Desktop.
An extension on SwiftUI's font struct adding getters for assigned properties.
//
// Font+Properties.swift
//
// Created by Stephan Casas on 1/31/25.
//
// @depends: https://gist.github.com/stephancasas/4653f98d55a9bfcd7e0830d22e1a3515
import SwiftUI
extension Font {
var size: CGFloat? {
Mirror.firstChild(matching: "size", in: self, as: CGFloat.self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment