Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Material Symbols fonts #550

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions UraniumUI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UraniumUI.WebComponents", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UraniumUI.Icons.SegoeFluent", "src\UraniumUI.Icons.SegoeFluent\UraniumUI.Icons.SegoeFluent.csproj", "{D146428B-5B37-4614-A6F4-2E9716E0CC08}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UraniumUI.Icons.MaterialSymbols", "src\UraniumUI.Icons.MaterialSymbols\UraniumUI.Icons.MaterialSymbols.csproj", "{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -107,6 +109,10 @@ Global
{D146428B-5B37-4614-A6F4-2E9716E0CC08}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D146428B-5B37-4614-A6F4-2E9716E0CC08}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D146428B-5B37-4614-A6F4-2E9716E0CC08}.Release|Any CPU.Build.0 = Release|Any CPU
{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -126,6 +132,7 @@ Global
{D44173B6-CA42-4F97-BB3C-9F8CC62C4340} = {32493E5D-A757-4289-A168-DA0E8DDE9B29}
{78F7207D-B804-499B-97F5-8EA1D0EA9DA2} = {32493E5D-A757-4289-A168-DA0E8DDE9B29}
{D146428B-5B37-4614-A6F4-2E9716E0CC08} = {32493E5D-A757-4289-A168-DA0E8DDE9B29}
{5F8A8D64-6B4F-4936-A2A5-A4765FFDD6AE} = {32493E5D-A757-4289-A168-DA0E8DDE9B29}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {31946918-5DA1-40D1-8BD7-6834BB21D0FF}
Expand Down
8 changes: 4 additions & 4 deletions demo/UraniumApp/AppShell.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:UraniumApp"
xmlns:pages="clr-namespace:UraniumApp.Pages"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:bsheet="clr-namespace:UraniumApp.Pages.BottomSheets"
xmlns:backdrop="clr-namespace:UraniumApp.Pages.Backdrops"
xmlns:dataGrid="clr-namespace:UraniumApp.Pages.DataGrids"
xmlns:m="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:tabs="clr-namespace:UraniumApp.Pages.TabViews"
xmlns:treeViews="clr-namespace:UraniumApp.Pages.TreeViews"
xmlns:inputFields="clr-namespace:UraniumApp.Pages.InputFields"
Expand Down Expand Up @@ -70,8 +70,8 @@
<ShellContent ContentTemplate="{DataTemplate inputFields:MultiplePickerFieldPage}" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Grid_view}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}"/>
</FlyoutItem>

<FlyoutItem Title="TimePickerField" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Access_alarm}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}">
<ShellContent ContentTemplate="{DataTemplate inputFields:TimePickerFieldPage}" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Access_alarm}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}"/>
<FlyoutItem Title="TimePickerField" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Alarm}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}">
<ShellContent ContentTemplate="{DataTemplate inputFields:TimePickerFieldPage}" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Alarm}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}"/>
</FlyoutItem>

<FlyoutItem Title="DatePickerField" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Calendar_month}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}">
Expand Down Expand Up @@ -125,7 +125,7 @@
Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Folder}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}"/>
</FlyoutItem>

<FlyoutItem Title="Font Icons" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Insert_emoticon}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}">
<FlyoutItem Title="Font Icons" Icon="{FontImageSource Glyph={x:Static m:MaterialOutlined.Emoji_symbols}, FontFamily=MaterialOutlined, Color={AppThemeBinding {StaticResource Primary}, Dark={StaticResource PrimaryDark}}}">
<ShellContent ContentTemplate="{DataTemplate pages:FontImagesPage}"/>
</FlyoutItem>

Expand Down
6 changes: 3 additions & 3 deletions demo/UraniumApp/CopyButton.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using UraniumUI.Icons.MaterialIcons;
using UraniumUI.Icons.MaterialSymbols;
using UraniumUI.Resources;
using UraniumUI.Views;

Expand All @@ -13,7 +13,7 @@ public CopyButton()
Margin = 20;
var copyImageSource = new FontImageSource
{
Glyph = MaterialRegular.Content_copy,
Glyph = MaterialSharp.Content_copy,
FontFamily = "MaterialRegular",
};
copyImageSource.SetAppThemeColor(
Expand All @@ -35,7 +35,7 @@ public CopyButton()

img.Source = new FontImageSource
{
Glyph = MaterialRegular.Done,
Glyph = MaterialSharp.Done,
FontFamily = "MaterialRegular",
Color = Color.FromArgb("#8BC34A")
}; ;
Expand Down
6 changes: 2 additions & 4 deletions demo/UraniumApp/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:UraniumApp"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
xmlns:plain="clr-namespace:Plainer.Maui.Controls;assembly=Plainer.Maui"
Expand All @@ -18,14 +17,13 @@
<Grid ColumnDefinitions="Auto,*">
<Image Rotation="-45" Margin="15">
<Image.Source>
<FontImageSource Size="55" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialRegular.Pan_tool_alt}" Color="{AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}" />
<FontImageSource Size="55" FontFamily="MaterialRounded" Glyph="{x:Static uranium:MaterialRounded.Pan_tool_alt}" Color="{AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}" />
</Image.Source>
</Image>
<Label FontSize="Large" Grid.Column="1" Text="Use the side navigation drawer to navigate to the other pages." VerticalOptions="Center"/>
</Grid>


<uranium:SelectableLabel Text="Hello, World! This text should be selectable!" />
<uranium:SelectableLabel Margin="15" Text="Hello, World! This text should be selectable!" />

</VerticalStackLayout>
</ContentPage>
4 changes: 2 additions & 2 deletions demo/UraniumApp/MauiProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static MauiApp CreateMauiApp()
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
fonts.AddFontAwesomeIconFonts();
fonts.AddMaterialIconFonts();
fonts.AddMaterialSymbolsFonts();
fonts.AddFluentIconFonts();
});

Expand All @@ -47,7 +47,7 @@ public static MauiApp CreateMauiApp()
.AddServicesByAttributes(assembly: thisAssembly);

//builder.Services.AddCommunityToolkitDialogs();
builder.Services.AddMopupsDialogs();
//builder.Services.AddMopupsDialogs();

return builder.Build();
}
Expand Down
6 changes: 3 additions & 3 deletions demo/UraniumApp/Pages/Backdrops/SimpleBackdropPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialSymbols;assembly=UraniumUI.Icons.MaterialSymbols"
xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
xmlns:input="clr-namespace:InputKit.Shared.Controls;assembly=InputKit.Maui"
xmlns:root="clr-namespace:UraniumApp"
Expand All @@ -20,7 +20,7 @@
<Label Text="Click the filter icon above." VerticalOptions="Center"/>
<Image HorizontalOptions="Center" Rotation="45">
<Image.Source>
<FontImageSource Size="35" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialRegular.Arrow_upward}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
<FontImageSource Size="35" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialSharp.Arrow_upward}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
</Image.Source>
</Image>
</HorizontalStackLayout>
Expand All @@ -36,7 +36,7 @@
<uranium:UraniumContentPage.Attachments>
<material:BackdropView Title="Filter" x:Name="backdrop" InsertAfterToolbarIcons="false">
<material:BackdropView.IconImageSource>
<FontImageSource FontFamily="MaterialRound" Glyph="{x:Static m:MaterialRound.Filter_alt}" Color="{DynamicResource OnPrimary}" />
<FontImageSource FontFamily="MaterialRound" Glyph="{x:Static m:MaterialSharp.Filter}" Color="{DynamicResource OnPrimary}" />
</material:BackdropView.IconImageSource>
<material:BackdropView.Resources>
<ResourceDictionary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Label Text="You can swipe up/down the bottom sheet or just click the anchor." HorizontalTextAlignment="Center" />
<Image HorizontalOptions="Center" IsVisible="{OnPlatform WinUI=False, MacCatalyst=False}">
<Image.Source>
<FontImageSource Size="75" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialRegular.Swipe_up}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
<FontImageSource Size="75" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialSharp.Swipe_up}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
</Image.Source>
</Image>
</VerticalStackLayout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Label Text="You can swipe up/down the bottom sheet or just click the anchor." HorizontalTextAlignment="Center" />
<Image HorizontalOptions="Center" IsVisible="{OnPlatform WinUI=False, MacCatalyst=False}">
<Image.Source>
<FontImageSource Size="75" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialRegular.Swipe_up}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
<FontImageSource Size="75" FontFamily="MaterialRegular" Glyph="{x:Static uranium:MaterialSharp.Swipe_up}" Color="{AppThemeBinding {StaticResource OnSurface}, Dark={StaticResource OnSurfaceDark}}" />
</Image.Source>
</Image>
</VerticalStackLayout>
Expand Down
6 changes: 3 additions & 3 deletions demo/UraniumApp/Pages/ButtonsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ContentPage x:Class="UraniumApp.Pages.ButtonsPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialSymbols;assembly=UraniumUI.Icons.MaterialSymbols"
xmlns:vm="clr-namespace:UraniumApp.ViewModels"
xmlns:input="clr-namespace:InputKit.Shared.Controls;assembly=InputKit.Maui"
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
Expand All @@ -24,8 +24,8 @@
<Label Text="UraniumUI.Material.Controls" FontSize="Micro" Opacity=".6" />

<HorizontalStackLayout>
<Button Text="Documentation" StyleClass="OutlinedButton" Command="{Binding OpenDocumentationCommand}" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Insert_drive_file}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Code}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Documentation" StyleClass="OutlinedButton" Command="{Binding OpenDocumentationCommand}" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.File_open}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.Code}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
</HorizontalStackLayout>

<Label Text="There are five types of common buttons: elevated, filled, filled tonal, outlined, and text." />
Expand Down
8 changes: 4 additions & 4 deletions demo/UraniumApp/Pages/CheckBoxesPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
xmlns:input="clr-namespace:InputKit.Shared.Controls;assembly=InputKit.Maui"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialSymbols;assembly=UraniumUI.Icons.MaterialSymbols"
xmlns:vm="clr-namespace:UraniumApp.ViewModels"
xmlns:root="clr-namespace:UraniumApp"
xmlns:local="clr-namespace:UraniumApp"
Expand Down Expand Up @@ -37,9 +37,9 @@
<Label Text="UraniumUI.Material.Controls" FontSize="Micro" Opacity=".6" />

<HorizontalStackLayout Padding="0,20">
<Button Text="Documentation" Command="{x:Static uranium:Commands.OpenLinkCommand}" CommandParameter="{StaticResource DocLink}" StyleClass="OutlinedButton" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Insert_drive_file}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" IsEnabled="False" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Code}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Reset" Clicked="Button_Clicked" StyleClass="OutlinedButton" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Refresh}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Documentation" Command="{x:Static uranium:Commands.OpenLinkCommand}" CommandParameter="{StaticResource DocLink}" StyleClass="OutlinedButton" 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="Reset" Clicked="Button_Clicked" StyleClass="OutlinedButton" ImageSource="{FontImageSource Glyph={x:Static m:MaterialSharp.Refresh}, FontFamily=MaterialSharp, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
</HorizontalStackLayout>

<Label Text="CheckBox is a control that allows the user to choose a boolean value. UraniumU UI uses InputKit CheckBox instead of MAUI one. It is because InputKit CheckBox is more customizable and already has a Material theme." />
Expand Down
6 changes: 3 additions & 3 deletions demo/UraniumApp/Pages/ChipsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialSymbols;assembly=UraniumUI.Icons.MaterialSymbols"
xmlns:vm="clr-namespace:UraniumApp.ViewModels"
xmlns:local="clr-namespace:UraniumApp"
x:Class="UraniumApp.Pages.ChipsPage"
Expand All @@ -16,8 +16,8 @@
<Label Text="UraniumUI.Material.Controls" FontSize="Micro" Opacity=".6" />

<HorizontalStackLayout Padding="0,20">
<Button Text="Documentation" StyleClass="OutlinedButton" IsEnabled="False" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Insert_drive_file}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<Button Text="Source" StyleClass="OutlinedButton" IsEnabled="False" ImageSource="{FontImageSource Glyph={x:Static m:MaterialRegular.Code}, FontFamily=MaterialRegular, Color={AppThemeBinding {StaticResource OnBackground}, Dark={StaticResource OnBackgroundDark}}}" />
<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}}}" />
</HorizontalStackLayout>

<Label Text="Chips are simple components with close option. They're also used in MultipleTextField as selection items." />
Expand Down
2 changes: 1 addition & 1 deletion demo/UraniumApp/Pages/DataGrids/CustomDataGridPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:UraniumApp.Pages.DataGrids"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialIcons;assembly=UraniumUI.Icons.MaterialIcons"
xmlns:m="clr-namespace:UraniumUI.Icons.MaterialSymbols;assembly=UraniumUI.Icons.MaterialSymbols"
xmlns:uranium="http://schemas.enisn-projects.io/dotnet/maui/uraniumui"
xmlns:material="http://schemas.enisn-projects.io/dotnet/maui/uraniumui/material"
x:Name="page">
Expand Down
Loading