Replies: 2 comments 1 reply
-
I was able to add a disclosure indicator to Cell controls by adding the following to my project:
...though I'm fairly certain this isn't the ideal way to do so. It would be really convenient if there were a way to have this set automatically when a Cell binds to a Command, but I've been unable to figure out how to do that so far. I also haven't yet tried to set a UITableViewCell's Accessory to a Checkmark, DetailButton, or DetailDisclosureButton. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Yeah, that's the way I've done it. Moved my custom renderer code to AppDelegate
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Apple's Human Interface Guidelines for iOS/iPadOS describe using a UITableViewCellAccessory on the right side of a UITableViewCell to describe its content. It looks like this is possible using Xamarin.iOS, but I was unable to find a way to add a disclosure indicator to a .NET MAUI Cell.
I would like to at least add a disclosure indicator chevron to a Cell to indicate that tapping it will navigate away from the current page. I think adding a method to
Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific
similar to howCell.SetDefaultBackgroundColor
is already implemented seems like the most intuitive way to do so.Related:
https://developer.apple.com/design/human-interface-guidelines/components/layout-and-organization/lists-and-tables
https://developer.apple.com/documentation/uikit/uitableviewcell/accessorytype/disclosureindicator
https://learn.microsoft.com/en-us/dotnet/maui/ios/platform-specifics/cell-background-color?view=net-maui-7.0
https://learn.microsoft.com/en-us/xamarin/ios/user-interface/controls/tables/customizing-table-appearance
Beta Was this translation helpful? Give feedback.
All reactions