Password Input

Component checklist

Flutter

Is new design vision part implemented using new tokens?

Up to date

Resources

Examples

Media/Logo


                                                        
                                                        
                                                            OptimusPasswordFormField(
                                                                size: size,
                                                                placeholder: placeholder,
                                                                label: label,
                                                                isEnabled: isEnabled,
                                                                isRequired: isRequired,
                                                                helperMessage: helpMessage.isNotEmpty ? Text(helpMessage) : null,
                                                                caption: caption.isNotEmpty ? Text(caption) : null,
                                                                statusBarState: statusBarState,
                                                                isClearEnabled: isClearEnabled,
                                                                showLoader: showLoader,
                                                                leading: showLeading ? const Icon(OptimusIcons.lock) : null,
                                                              )
                                                                      
                                                        
                                                            

OptimusMewsLogo Example

API

Name

Description

Type

Default

size

 

OptimusWidgetSize

OptimusWidgetSize.large

placeholder

 

String?

 

label

 

String?

 

isRequired

 

bool

false

helperMessage

 

String?

 

caption

 

String?

 

statusBarState

 

OptimusStatusBarState

 

isClearEnabled

 

bool

false

showLoader

 

bool

false

leading

 

Widget?