PaddedTextField.swift 629 B

12345678910111213141516171819202122232425
  1. //
  2. // PaddedTextField.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 30/09/23.
  6. //
  7. import Foundation
  8. import UIKit
  9. class PaddedTextField: UITextField {
  10. let padding = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 10) // Adjust the left and right padding as needed
  11. override func textRect(forBounds bounds: CGRect) -> CGRect {
  12. return bounds.inset(by: padding)
  13. }
  14. override func placeholderRect(forBounds bounds: CGRect) -> CGRect {
  15. return bounds.inset(by: padding)
  16. }
  17. override func editingRect(forBounds bounds: CGRect) -> CGRect {
  18. return bounds.inset(by: padding)
  19. }
  20. }