Book Image

Xamarin Blueprints

By : Michael Williams
Book Image

Xamarin Blueprints

By: Michael Williams

Overview of this book

Do you want to create powerful, efficient, and independent apps from scratch that will leverage the Xamarin framework and code with C#? Well, look no further; you’ve come to the right place! This is a learn-as-you-build practical guide to building eight full-fledged applications using Xamarin.Forms, Xamarin Android, and Xamarin iOS. Each chapter includes a project, takes you through the process of building applications (such as a gallery Application, a text-to-speech service app, a GPS locator app, and a stock market app), and will show you how to deploy the application’s source code to a Google Cloud Source Repository. Other practical projects include a chat and a media-editing app, as well as other examples fit to adorn any developer’s utility belt. In the course of building applications, this book will teach you how to design and prototype professional-grade applications implementing performance and security considerations.
Table of Contents (14 chapters)
Xamarin Blueprints
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Extending the UIColor framework


In this section we are going to apply a common technique for extending on standard iOS classes. In the UIColor class, there is no function for applying hex strings to determine a color, so let's add this on top. Create a new folder called Extensions, add in a new file called UIColorExtensions.cs, and implement the following:

public static class UIColorExtensions
     {
         public static UIColor FromHex(this UIColor color, string hexValue, float alpha = 1.0f)
         {
             var colorString = hexValue.Replace("#", "");
             if (alpha > 1.0f)
             {
                 alpha = 1.0f;
             }
             else if (alpha < 0.0f)
             {
                 alpha = 0.0f;
             }
             float red, green, blue;
             switch (colorString.Length)
             {
                 case 3: // #RGB
                     {
...