Eureka TextRow layout problems

142 Views Asked by At

I'm trying to configure a TextRow to have:

  • subtitle cellStyle
  • multiline text label

Sample:

 let textRow = TextRow() {
      $0.tag = "TextRow"
      $0.cellStyle = .subtitle
      $0.title = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
      $0.cell.textLabel?.numberOfLines = 0
    }

But, as you can see, the layout is not correct; any help? Thanks

layout problem

Sample source code here

1

There are 1 best solutions below

0
Alessandro On

The problem seems fixed now after this pull request