Last active
January 31, 2025 21:43
-
-
Save stephancasas/69adfff402437d4e0bafa3b3ba5a8cda to your computer and use it in GitHub Desktop.
An extension on SwiftUI's font struct adding getters for assigned properties.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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