12345678910111213141516171819202122232425 |
- //
- // PaddedTextField.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 30/09/23.
- //
- import Foundation
- import UIKit
- class PaddedTextField: UITextField {
- let padding = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 10) // Adjust the left and right padding as needed
- override func textRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: padding)
- }
- override func placeholderRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: padding)
- }
- override func editingRect(forBounds bounds: CGRect) -> CGRect {
- return bounds.inset(by: padding)
- }
- }
|