All Projects → dotnet-ad → Xam.Forms.QRCode

dotnet-ad / Xam.Forms.QRCode

Licence: MIT license
A QRCode renderer based on SkiaSharp.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Xam.Forms.QRCode

QRManager
This is an example that uses ZXing.Net.Mobile for Forms. See more information here:
Stars: ✭ 19 (+18.75%)
Mutual labels:  xamarin, qrcode
Microcharts
Create cross-platform (Xamarin, Windows, ...) simple charts.
Stars: ✭ 1,742 (+10787.5%)
Mutual labels:  xamarin, skia
Skiasharp
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
Stars: ✭ 2,493 (+15481.25%)
Mutual labels:  xamarin, skia
CouchDraw
A synchronized drawing app that utilizes Couchbase Sync Gateway and Xamarin to enable shared canvases.
Stars: ✭ 22 (+37.5%)
Mutual labels:  xamarin, skia
Barcodescanner.xf
Barcode Scanner using GoogleVision API for Xamarin Form
Stars: ✭ 82 (+412.5%)
Mutual labels:  xamarin, qrcode
Microcharts
This project is just simple drawing on top of the awesome SkiaSharp library. The purpose is not to have an heavily customizable charting library. If you want so, simply fork the code, since all of this is fairly simple. Their is no interaction, nor animation at the moment.
Stars: ✭ 1,653 (+10231.25%)
Mutual labels:  xamarin, skia
SkiaSharp.QrCode
Qr Code Generator with Skia. (no System.Drawing)
Stars: ✭ 72 (+350%)
Mutual labels:  qrcode, skia
ShortURL
短网址生成器,演示地址:http://t.haojima.net/
Stars: ✭ 50 (+212.5%)
Mutual labels:  qrcode
Dracker
An iOS and React App to track debt and send/receive payments.
Stars: ✭ 22 (+37.5%)
Mutual labels:  qrcode
MonoTouch.SlideoutNavigation
A MonoTouch slide-out UI component
Stars: ✭ 41 (+156.25%)
Mutual labels:  xamarin
qrcode
A simple library for generating QR codes in C.
Stars: ✭ 23 (+43.75%)
Mutual labels:  qrcode
ggtrack
restlessdata.com.au/ggtrack
Stars: ✭ 39 (+143.75%)
Mutual labels:  qrcode
InvestmentDataSampleApp
This app utilizes a SQLite databse, MVVM, along with these Xamarin.Forms controls: Search Bar, Picker, Grid, StackLayout, Navigation Page, ListView, ViewCell. It also shows how to tweak the UI to best appear on larger tablet screens.
Stars: ✭ 56 (+250%)
Mutual labels:  xamarin
ObjectDetector
A simple custom vision object detector sample app
Stars: ✭ 14 (-12.5%)
Mutual labels:  xamarin
QrCodeGenerator
QR Code Generator for .NET
Stars: ✭ 66 (+312.5%)
Mutual labels:  qrcode
effects-xamarin-forms
Customized Effects/Renderers for Xamarin.Forms
Stars: ✭ 21 (+31.25%)
Mutual labels:  xamarin
WeakEventListener
The WeakEventListener allows the owner to be garbage collected if its only remaining link is an event handler.
Stars: ✭ 25 (+56.25%)
Mutual labels:  xamarin
XamCall
XamDesign Xamarin Forms Call screen Ui Design
Stars: ✭ 25 (+56.25%)
Mutual labels:  xamarin
XamFormsMvxTemplate
A Visual Studio 2017 template for projects based on Xamarin.Forms 3.3 and MvvmCross 6.2
Stars: ✭ 27 (+68.75%)
Mutual labels:  xamarin
Mastering-Xamarin.Forms-Second-Edition
Mastering Xamarin.Forms Second Edition, published by Packt
Stars: ✭ 16 (+0%)
Mutual labels:  xamarin

QRCode for Xamarin.Forms

NuGet Donate

A QRCode Xamarin.Forms view based on SkiaSharp.

I ended up with a custom QRCode renderer because I wasn't satisfied with ZXing based solutions which:

  • need to include the scanning parts even if you only need to render codes.
  • rendering tweaking wasn't easy

Install

Available on NuGet.

Quickstart

<?xml version="1.0" encoding="utf-8"?>
<ContentPage 
    ...
    xmlns:qr="clr-namespace:Xam.Forms;assembly=Xam.Forms.QRCode">

    <qr:QRCode 
            Content="https://github.com/mono/SkiaSharp"
            Color="Maroon" 
            Level="H" 
            WidthRequest="400" 
            HeightRequest="400" 
            VerticalOptions="Center" 
            HorizontalOptions="Center" />
    
</ContentPage>

Thanks

Contributions

Contributions are welcome! If you find a bug please report it and if you want a feature please report it.

If you want to contribute code please file an issue and create a branch off of the current dev branch and file a pull request.

License

MIT © Aloïs Deniel

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].