Add account deletion

This commit is contained in:
Ilya Laktyushin
2022-06-30 18:55:19 +03:00
parent 411b8682c1
commit 16d6010385
48 changed files with 3222 additions and 65 deletions

View File

@@ -312,6 +312,15 @@ public class CheckLayer: CALayer {
}
}
public override init() {
self.theme = CheckNodeTheme(backgroundColor: .white, strokeColor: .blue, borderColor: .white, overlayBorder: false, hasInset: false, hasShadow: false)
self.content = .check
super.init()
self.isOpaque = false
}
public init(theme: CheckNodeTheme, content: CheckNodeContent = .check) {
self.theme = theme
self.content = content