Skip to content

Commit

Permalink
Update ChipsPage.xaml
Browse files Browse the repository at this point in the history
  • Loading branch information
enisn committed Jul 10, 2024
1 parent 97e9486 commit a496804
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion demo/UraniumApp/Pages/ChipsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
x:Class="UraniumApp.Pages.ChipsPage"
x:DataType="vm:ChipsViewModel"
Title="ChipsPage">
<ContentPage.Resources>

<x:String x:Key="SourceLink">https://github.com/enisn/UraniumUI/blob/develop/demo/UraniumApp/Pages/InputFields/DatePickerFieldPage.xam</x:String>
</ContentPage.Resources>

<ScrollView>
<VerticalStackLayout Padding="20">
Expand All @@ -17,7 +21,7 @@

<HorizontalStackLayout Padding="0,20">
<Button Text="Documentation" StyleClass="OutlinedButton" IsEnabled="False" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.File_open}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" IsEnabled="False" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.Code}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" Command="{x:Static uranium:Commands.OpenLinkCommand}" CommandParameter="{StaticResource SourceLink}" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.Code}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
</HorizontalStackLayout>

<Label Text="Chips are simple components with close option. They're also used in MultipleTextField as selection items." />
Expand Down

0 comments on commit a496804

Please sign in to comment.