abhinay
08/28/2018, 5:01 PMInherited platform declaration clash
for fun createCell()
. I am not extending an abstract class and my class doesn't override the method. Basically, the class definition is just this:
class MyTableRowSkin<S>(val tableRow: TableRow<S>) : TableRowSkin<S>(tableRow) {
}
TableRowSkin
overrides fun createCell
by extending abstract class TableRowSkinBase
(where the method is abstract).