π¨βπ»
This file contains hidden or 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
| # Specifies intentionally untracked files to ignore when using Git | |
| # http://git-scm.com/docs/gitignore | |
| *~ | |
| *.sw[mnpcod] | |
| *.log | |
| *.tmp | |
| *.tmp.* | |
| log.txt | |
| *.sublime-project |
This file contains hidden or 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
| import SwiftUI | |
| #if os(iOS) | |
| import UIKit | |
| #endif | |
| /** | |
| Display a simple view of the common system colors used for interface design. Quick reference that if in Canvas will display in a larger format. | |
| */ | |
| struct ExampleColorSchemes: View { |
This file contains hidden or 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
| // StringType.swift | |
| // | |
| // Created by Johnny1776 on 25/08/2023. | |
| // | |
| import SwiftUI | |
| extension String { | |
| /** | |
| Checks whether the string falls within a specified range and matches a particular pattern. |