Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can Row add a method to get columnNames? #1293

Open
Yishuhong2003 opened this issue Feb 11, 2025 · 0 comments
Open

Can Row add a method to get columnNames? #1293

Yishuhong2003 opened this issue Feb 11, 2025 · 0 comments

Comments

@Yishuhong2003
Copy link

public struct Row {

let columnNames: [String: Int]

fileprivate let values: [Binding?]

internal init(_ columnNames: [String: Int], _ values: [Binding?]) {
    self.columnNames = columnNames
    self.values = values
}

public func getColumnNames() -> [String: Int] {
    return columnNames
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant