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 System.Diagnostics; | |
using Microsoft.Maui.Platform; | |
namespace Demo.Handlers; | |
public partial class ImageTinted : Image | |
{ | |
public ImageTinted() | |
{ | |
ModifyImage(); |
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
<!-- For non sim (emulators): $(RuntimeIdentifier.StartsWith('iossimulator-')) --> | |
<!-- For physical devices: $(RuntimeIdentifier.StartsWith('ios-')) --> | |
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Debug' and $(RuntimeIdentifier.StartsWith('ios-'))"> | |
<RuntimeIdentifier>ios-arm64</RuntimeIdentifier> | |
<!-- Remove the following line if entitlements are not required --> | |
<CodesignEntitlement>Entitlements.plist</CodesignEntitlement> | |
<!-- Set the Apple Certificate Key name --> | |
<CodesignKey>Apple Development Key(ABCDEF)</CodesignKey> | |
<!-- Set the Apple Provisioning Profile name --> | |
<CodesignProvision>App Development Profile</CodesignProvision> |
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"> | |
<x:String x:Key="FontRegular">NunitoRegular</x:String> | |
<x:String x:Key="FontMedium">NunitoMedium</x:String> | |
<x:String x:Key="FontMediumItalic">NunitoMediumItalic</x:String> | |
<x:String x:Key="FontBold">NunitoBold</x: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
################# | |
## Ektron Project | |
## Contributors: James Stout @egandalf and Victor H. Garcia @ivictorhugo | |
################# | |
## Ignore Ektron site specific files, build results, and | |
## files generated by popular Ektron assets. | |
# Ektron-specific folders and files | |
[Ww]orkarea/ |
NewerOlder