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
// | |
// HostSnapshoptViewController.swift | |
// git:pabloruan0710 | |
// | |
// Created by Pablo Ruan on 28/04/23. | |
// Copyright © 2023 Pablo Ruan. All rights reserved. | |
// | |
import Foundation | |
import SwiftUI |
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
import Foundation | |
public enum DogGender: Int { | |
case male | |
case female | |
} | |
public class Dog { | |
public var name: String | |
public var gender: DogGender |
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
import Foundation | |
import UIKit | |
extension UIView { | |
/** | |
Margem para lado esquerdo - leftAnchor | |
- Parameter size: descricao do parameter. | |
- Parameter active: descricao do parameter. |