EurekaCommunity / SplitRow

A row for Eureka to put two rows side by side into the same UITableViewCell
MIT License
56 stars 27 forks source link

How to set a new width for the splitRow? #11

Closed alonreptor closed 6 years ago

alonreptor commented 6 years ago

image

Hi, Im trying to move the split line so that the selected value will have more space when it is displayed... please advise

marbetschar commented 6 years ago

@alonreptor please have a look at the rowLeftPercentage of the SplitRow and set it to the desired value. Here's an example:

SplitRow<PushRow<String>,DecimalRow>{
    $0.rowLeftPercentage = 0.7
}
alonreptor commented 6 years ago

Thanks!