Skip to content

dotnet-ad/Xam.Forms.QRCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages