This file contains hidden or 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
| import os | |
| import re | |
| from shutil import copyfile | |
| import getpass | |
| # Supported font formats. Feel free to customize them! | |
| fontFormats = ('otf', 'ttf', 'eot', 'woff', 'woff2') | |
| # Source directory where the fonts are |
This file contains hidden or 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" ?> | |
| <customcontrols:AcrylicTabbedPage | |
| xmlns:customcontrols="clr-namespace:XTournament.CustomControls" | |
| xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| xmlns:views="clr-namespace:XTournament.Views" | |
| xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" | |
| x:Class="XTournament.Views.MainPage" | |
| AcrylicSupportForUwp="True" | |
| Title="XTournament" |
This file contains hidden or 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; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using Windows.UI.Xaml; | |
| using Windows.UI.Xaml.Controls; | |
| using Windows.UI.Xaml.Markup; | |
| using Windows.UI.Xaml.Media; | |
| using Windows.UI.Xaml.Media.Imaging; | |
| using Xamarin.Forms.Platform.UWP; | |
| using XTournament.UWP.CustomRenderers; |
This file contains hidden or 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; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using Xamarin.Forms; | |
| using XTournament.Models; | |
| namespace XTournament.CustomControls | |
| { | |
| public class AcrylicTabbedPage : TabbedPage | |
| { |