Hello, I have code that I am porting from Xamarin to Maui, and in the past I was able to apply a StackLayout object as the content for the chip.Content. This was used to generate dynamic Chips with an Icon and a text label based on other logic in the code.
generally, the psudocode would be
SfChip chip = new SfChip();
StackLayout sl = new StackLayout()};
var
optionIcon = ... code to get image...
var
displayName = ... code to get name...
sl.Children.Add(optionIcon);
sl.Children.Add(displayName);
chip.Content = sl;
chip.Clicked += HandleItemTapped;
This functionality seems to have been removed, or renamed, but I cannot figure out what it was renamed too. There are no notes in the Porting to MAUI documentation for this feature.
Has this ability been removed?
Thanks!