Giter VIP home page Giter VIP logo

acr-xamarin-forms's Introduction

ACR Xamarin Forms

##Camera & Gallery #Powered By Xamarin.Mobile

##Location Services #Powered By Xamarin.Mobile

##Email

##Phone & SMS

##User Dialogs Allows for messagebox style dialogs

  • Action Sheet (multiple choice menu)
  • Alert
  • Prompt
  • Confirm
  • Loading
  • Progress
  • Toast

#Powered By:

  • Android - Progress/Loading uses AndHUD
  • iOS - Progress/Loading uses BTProgressHUD
  • WinPhone - All dialogs by Coding4Fun Toolkit

##Bar Code Scanner Powered by Redth's ZXing.Net.Mobile

new Command(async () => {
    var scan = DependencyService.Get<IBarCodeScanner>();
    var r = await scan.Read(flashlightText: "Turn on flashlight", cancelText: "Cancel");

    Result = (r.Success 
        ? String.Format("Barcode Result - Format: {0} - Code: {1}", r.Format, r.Code)
        : "Cancelled barcode scan"
    );
});

##Signature Pad Call for a signature pad dialog in 1 line of xplat code from a view model!

var signatureService = DepedencyService.Get<ISignatureService>();

signatureService.RequestSignature(result => {
	if (result.Cancelled)
		return;

	// use the image stream to write to file or serialize the draw points
	// result.Stream or result.Points
});


signatureService.LoadSignature(drawPoints);

#Configuration

signatureService.DefaultConfiguration.ClearText = "Why clear?";

or pass overridden configuration to each method:

signatureService.RequestSignature(callback, new SignaturePadConfiguration {
	SaveText = "Signed!",
	CancelText = "No way!",
	PromptText = "Right here"
});

##Network Detecting network state changes so that you can inform the user when they were working in an offline state.

  • INetworkService subscribes to INotifyPropertyChanged and monitors the device network status
  • INetworkService.NetworkStatusChanged event for background processes to monitor

##Settings A simple settings library that works differently than the traditional setting plugins out there. Instead, my approach was to work with an observable dictionary.

##Device Info Allows you to get the information of the device for auditing purposes

  • Device Manufacturer
  • Operating System and Version
  • Front and rear facing cameras
  • Screen Resolution

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.