-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathBarcodePage.razor
More file actions
19 lines (16 loc) · 1.01 KB
/
BarcodePage.razor
File metadata and controls
19 lines (16 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@page "/mudbarcode"
@namespace MudExtensions.Docs.Pages
<ExamplePage Component="typeof(MudBarcode)">
<MudAlert Severity="Severity.Info" Elevation="0" Class="mb-4">
<MudText>MudBarcode has external dependencies and is part of <MudLink Href="">CodeBeam.MudBlazor.Extensions.Qr</MudLink> NuGet package.</MudText>
</MudAlert>
<ExampleCard ComponentName="Barcode" ExampleName="BarcodeExampleIntro" Title="Intro & Tips" AliasName="intro" ShowCodeSection="false">
<BarcodeExampleIntro />
</ExampleCard>
<ExampleCard ComponentName="Barcode" ExampleName="BarcodeExample1" Title="Usage" AliasName="usage" Description="Barcode shows different bar codes like QR code with defined value.">
<BarcodeExample1 />
</ExampleCard>
<ExampleCard ComponentName="Barcode" ExampleName="BarcodeExample2" Title="Centered Icons" AliasName="icons" Description="ChildContent parameter allows to show an component at the center of the QrCode.">
<BarcodeExample2 />
</ExampleCard>
</ExamplePage>