Footer
Design System - Footer component

// Sample code
<Footer
actionFields={[
<Button icon="ArrowBack" label="Back" onClick={()=>{}} type="button" variation="secondary"/>,
<Button icon="ArrowForward" isSuffix label="Next" onClick={()=>{}} type="button"/>
]}
className=""
maxActionFieldsAllowed={5}
sortActionFields
style={{}}
/>// Sample code
FooterAction(
buttons: DigitButton(
label: 'back',
onPressed: () {
print('back pressed');
},
type: DigitButtonType.primary,
size: DigitButtonSize.large,
prefixIcon: Icons.arrow_back,
),
),
FooterAction(
buttons: DigitButton(
label: 'Actions ',
onPressed: () {
print('next button pressed');
},
type: DigitButtonType.primary,
size: DigitButtonSize.large,
suffixIcon: Icons.arrow_forward,
),
),
],
footerContent: Text(
'This is extra content for the footer',
style: TextStyle(color: Colors.grey, fontSize: 12),
),
),Anatomy

Variants


Properties


Property Configuration Table
Property
Value
Default
Property
Value
Default
Usage Guide


Change log
Date
Number
Notes
Design Checklist
Last updated
Was this helpful?