Ranjith Kumar Nagiri
Ranjith Kumar Nagiri

Reputation: 863

Expandable List View In Xamarin IOS

i am tying to implement expandable list view as a popup view using Xamarin IOS. Please find the below image.

enter image description here

Can any one give brief description to implement the above requirement. Thanks you.

Upvotes: 1

Views: 1326

Answers (1)

Marc Bruins
Marc Bruins

Reputation: 136

You could create a custom popup which has a tableview in it with expendable rows.

To create a custom popup you can something like this:

https://stackoverflow.com/a/19509582/5852062

When thats done, you should make the custom view use a tableview and make some rows expendable, something like this:

http://www.appcoda.com/expandable-table-view/

Note that this is in swift/objective-c but perfectly translatable to c#.

Upvotes: 0

Related Questions