Strypper / mauisland

MAUIsland 🏝️ is the number 1 controls gallery for .NET MAUI
MIT License
198 stars 14 forks source link

Better source code expander #83

Closed Strypper closed 1 year ago

Strypper commented 1 year ago

Description

Instead of using code editor to display the code, we use the Label for richer color options, this will support many type of programming languages and it's faster than the Editor

Public API Changes

Old

<app:SourceCodeExpander XamlCode="{x:Binding SliderWithCustomThumbImageXamlCode}" />

New

<app:SourceCodeExpander Code="{x:Binding SliderWithCustomThumbImageXamlCode}" CodeType="Xaml" />
<app:SourceCodeExpander Code="{x:Binding SliderWithCustomThumbImageCSharpCode}" CodeType="CSharp" />

Intended Use-Case

For displaying code guidance.