CodeBeam.MudBlazor.Extensions
CodeBeam.MudBlazor.Extensions copied to clipboard
Modify Buttons for Stepper
trafficstars
I am after the ability to modify the text on the buttons for steps. Is this something that is possible?
for example:
<MudStepExtended IsResultStep="true" NextButtonText="Checkout" Icon="@Icons.Material.Filled.Money" Title="Checkout" Order="3">
<ChildContent>
@if (_stepper?.GetActiveIndex() == 2)
{
<Checkout />
}
</ChildContent>
</MudStepExtended>
If thats too much then perhaps possibility to disable next button and display custom buttons?
You can hide each button and create your own ones in ActionContent.
I didn't understand which text, you mean title on the top of each step icon?
You can use StepperLocalizedStrings for each text.