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

Support inline rows? #46

Open Sweeper777 opened 4 years ago

Sweeper777 commented 4 years ago

Currently, if I use inline rows as the left/right row, I can't expand them:

    form +++ Section()
        <<< SplitRow<PickerInlineRow<String>,TextRow>(){
            $0.rowLeft = PickerInlineRow<String>(){
                $0.title = "Choice 1"
                $0.options = ["A","B","C"]
                $0.value = "A"
            }

            $0.rowRight = TextRow(){
                $0.title = "Hello"
            }

            $0.rowLeftPercentage = 0.5

        }

Any plans to support them? I mean I could replace it with a PushRow, but bringing the user to another VC seems a bit to heavyweight for what I am doing...

marbetschar commented 4 years ago

@Sweeper777 as I no longer have access to a Mac it's not very likely I will add support for inline rows any time soon. However, I'm happy to support whoever give this a shot - so if you have some time, go for it! :)