alpha-wallet-ios icon indicating copy to clipboard operation
alpha-wallet-ios copied to clipboard

UIKitFactory suggestion

Open eviltofu opened this issue 2 years ago • 0 comments

Suggest we use a class to build the UI elements

class UiKitFactory: NSObject { ... func textField() -> UITextField { let textField = UITextField() textField.translateAutoresizingMask = false textField.backgroundColor = R.color.dove() ... return textField } ... }

eviltofu avatar Mar 01 '23 10:03 eviltofu