Text overlapping with row value in Swift 4.2/ iOS 12.1
Environment
Eureka: 4.3.1
Xcode: 10.1
iOS: 12.1
Code
lazy var emailRow: EmailFloatLabelRow = {
let row = EmailFloatLabelRow("Email")
.cellSetup { cell, row in
row.title = row.tag
cell.textField.becomeFirstResponder()
}
.cellUpdate { cell, _ in
cell.textLabel?.textColor = .grayDarkest
}
return row
}()
Screenshot

Any idea why this is happening?