About
NVCurrencyLabel in the Patterns layer.
Related: NVPriceTag, NVCountdown, NVQuote, NVCodeBlock, NVBulletList, NVStatCard.
XAML with every attribute
Namespace xmlns:nv="http://nuvyntralabs.com/uikit". Kit attributes first, then inherited MAUI VisualElement / View members. Framework properties are the same on every NV* view and are not repeated in the official control reference.
xmlns:nv="http://nuvyntralabs.com/uikit"
<nv:NVCurrencyLabel
Amount="0"
Seconds="0"
Text="{x:Null}"
Code="{x:Null}"
Items="{x:Null}"
Label="custom pair"
Value="custom pair"
on="custom pair"
NVStatCard="custom pair"
IsVisible="True"
IsEnabled="True"
Margin="0"
HorizontalOptions="Fill"
VerticalOptions="Fill"
BindingContext="{Binding}" />Attributes
custom names are Lumina API. Unmarked names match familiar MAUI / forms usage.
| Attribute | Type | Default | Kind | Explanation |
|---|---|---|---|---|
Amount | double | custom | custom | Currency amount. |
Seconds | int | custom | custom | Countdown remaining seconds. |
Text | object | — | familiar | Visible copy on the control — label, button caption, banner, or body. |
Code | object | — | familiar | Entered PIN, OTP, or ticket code. |
Items | object | — | familiar | String or typed list the control presents. |
Label | string | custom pair | custom | pair |
Value | string | custom pair | custom | pair |
on | string | custom pair | custom | pair |
NVStatCard | string | custom pair | custom | pair |
Inherited MAUI attributes
Every NV* view also inherits MAUI ContentView / VisualElement members. Those are framework properties.
| Attribute | Type | Default | Explanation |
|---|---|---|---|
IsVisible | bool | true | MAUI VisualElement. Hide the control without removing it from the tree. |
IsEnabled | bool | true | MAUI VisualElement. When false, the control ignores input and uses the Disabled visual state. |
Margin | Thickness | 0 | MAUI View. Outer gap around the control. Use NVTokens.Space* for Lumina rhythm. |
HorizontalOptions | LayoutOptions | Fill | MAUI View. Horizontal alignment in the parent (Start, Center, End, Fill). |
VerticalOptions | LayoutOptions | Fill | MAUI View. Vertical alignment in the parent. |
BindingContext | object? | inherited | MAUI BindableObject. Source for {Binding …} paths on this subtree. |
Typical usage
Short sample from the official control reference — not every attribute.
<nv:NVCurrencyLabel Amount="42" />
<nv:NVCountdown Seconds="90" />
<nv:NVQuote Text="Warm paper." />
<nv:NVCodeBlock Code="UseNuvyntraUIKit();" />
<nv:NVStatCard Label="Orders" Value="128" />