This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?xaml-comp compile="true" ?> | |
<ResourceDictionary | |
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"> | |
<!-- Primary --> | |
<Color x:Key="Primary0">#000000</Color> | |
<Color x:Key="Primary5">#00102B</Color> | |
<Color x:Key="Primary10">#001B3E</Color> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description": "TYPE: CUSTOM\nMaterial Theme Builder export 2024-08-30 01:36:01", | |
"seed": "#769CDF", | |
"coreColors": { | |
"primary": "#769CDF" | |
}, | |
"extendedColors": [], | |
"schemes": { | |
"light": { | |
"primary": "#415F91", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks> | |
<OutputType>Exe</OutputType> | |
<RootNamespace>Sample</RootNamespace> | |
<UseMaui>true</UseMaui> | |
<SingleProject>true</SingleProject> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<NoWarn>1998,8632</NoWarn> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Demo.Extensions; | |
/// <summary> | |
/// Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. | |
/// </summary> | |
/// <typeparam name="T"></typeparam> | |
public class ObservableRangeCollection<T> : ObservableCollection<T> | |
{ | |
/// <summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Documentation | |
# | |
# Set the vX.X.X-X tag (vMAJOR.MINOR.PATCH-BUILD_NUMBER) | |
# Install the Mobile Versioning in your Azure workspace https://marketplace.visualstudio.com/items?itemName=DamienAicheh.mobile-versioning-task | |
# | |
parameters: | |
- name: environment | |
displayName: Select an Environment | |
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Documentation | |
# | |
# Set the vX.X.X-X tag (vMAJOR.MINOR.PATCH-BUILD_NUMBER) to trigger the pipeline | |
# Install the Mobile Versioning in your Azure workspace https://marketplace.visualstudio.com/items?itemName=DamienAicheh.mobile-versioning-task | |
# | |
parameters: | |
- name: environment | |
displayName: Select an Environment | |
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls" | |
ios:Page.UseSafeArea="False"> | |
<FlexLayout Direction="Column" | |
HorizontalOptions="FillAndExpand" | |
VerticalOptions="FillAndExpand"> | |
<FlexLayout.Background> | |
<LinearGradientBrush EndPoint="0,1"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Firebase.Crashlytics; | |
#if IOS | |
using Foundation; | |
#else | |
using Firebase; | |
#endif | |
namespace DemoApp.Services.Firebase; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Maui.Controls.Compatibility; | |
using Firebase.Analytics; | |
#if IOS | |
using Foundation; | |
#else | |
using Android.Content; | |
using Android.OS; | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using CommunityToolkit.Maui.Views; | |
namespace MauiApp.Services.ToolkitPopup; | |
public class PopupService : IPopupService | |
{ | |
readonly Page page = Application.Current?.MainPage ?? throw new NullReferenceException(); | |
private Popup popup { get; set; } | |
/// <summary> |
NewerOlder