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"?> | |
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="Xexpo.LoginPage" | |
> | |
<Grid> | |
<Image Source="rainBus.jpg" Aspect="AspectFill"/> | |
<ScrollView> | |
<Grid Padding="20, 30, 20, 20" RowSpacing="20"> | |
<Grid.RowDefinitions> |
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
<primitives:RadSideDrawer x:Name="drawer"> | |
<primitives:RadSideDrawer.DrawerLength> | |
<OnPlatform x:TypeArguments="x:Double" | |
Android="600" | |
iOS="200" /> | |
</primitives:RadSideDrawer.DrawerLength> | |
<primitives:RadSideDrawer.MainContent> | |
<maps:Map x:Name="MyMap" | |
HeightRequest="200" | |
IsShowingUser="true" |
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
// This file has been autogenerated from a class added in the UI designer. | |
using System; | |
using Foundation; | |
using UIKit; | |
using Mailbox; | |
using CoreGraphics; | |
namespace ios110 |
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 Android.App; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Android.OS; | |
using Android.Support.V4.View; | |
using Android.Graphics; | |
namespace Clock | |
{ |
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
nint taskId = -1; | |
Task savingChoiceTask; | |
public async override void DidEnterBackground (UIApplication app) | |
{ | |
Logger.Log ("DidEnterBackground() - entered background"); | |
// Begin Finite-Length Task. | |
this.taskId = app.BeginBackgroundTask (null); |
NewerOlder