$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
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 { Component, Input, AfterViewInit } from '@angular/core'; | |
| import { NgModel, DefaultValueAccessor, NgControl } from '@angular/forms'; | |
| import { Http, Headers, RequestOptions } from '@angular/http'; | |
| @Component({ | |
| selector: 'app-file-uploader', | |
| template: '<input type="file" (change)="updated($event);">', | |
| providers: [NgModel, DefaultValueAccessor] | |
| }) | |
| export class FileUploaderComponent implements AfterViewInit { |
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 Mobile.Droid.Renderers; | |
| using Xamarin.Forms; | |
| using Xamarin.Forms.Platform.Android; | |
| [assembly: ExportRenderer(typeof(Entry), typeof(CustomEntryRenderer_Droid))] | |
| namespace Mobile.Droid.Renderers | |
| { | |
| public class CustomEntryRenderer_Droid : EntryRenderer | |
| { |
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 Xamarin.Forms; | |
| using Xamarin.Forms.Platform.iOS; | |
| [assembly: ExportRenderer (typeof(ViewCell), typeof(MyAPP.iOS.CustomAllViewCellRendereriOS))] | |
| namespace MyAPP.iOS | |
| { | |
| public class CustomAllViewCellRendereriOS : ViewCellRenderer | |
| { | |
| public override UIKit.UITableViewCell GetCell (Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) |
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.IO; | |
| using System.Net.Http; | |
| namespace PackageUploader.Azure | |
| { | |
| public class AzureStorageApi | |
| { | |
| public void UploadFile(String fullFilePath, String blobSasUri, Dictionary<String, String> metadata = null) |