Files
Woka_Native_iOS/WOKA/Helpers/BorderView.swift

16 lines
265 B
Swift
Raw Normal View History

2024-05-02 19:27:51 +05:30
//
// BorderView.swift
// WOKA
//
// Created by MacBook Pro on 02/05/24.
//
2024-05-02 19:30:09 +05:30
import UIKit
extension UIView{
func addBorderView(width : CGFloat , color : UIColor){
self.layer.borderWidth = width
self.layer.borderColor = color.cgColor
}
}