secondBorder property
Implementation
static final Map<CButtonKind, Map<CWidgetState, Border>> secondBorder = {
CButtonKind.primary: {
CWidgetState.enabled: Border.all(color: CColors.transparent, width: 0),
CWidgetState.focused: Border.all(color: CColors.white0, width: 2),
CWidgetState.disabled: Border.all(color: CColors.transparent, width: 0),
},
CButtonKind.secondary: {
CWidgetState.enabled: Border.all(color: CColors.transparent, width: 0),
CWidgetState.focused: Border.all(color: CColors.white0, width: 2),
CWidgetState.disabled: Border.all(color: CColors.transparent, width: 0),
},
CButtonKind.danger: {
CWidgetState.enabled: Border.all(color: CColors.transparent, width: 0),
CWidgetState.focused: Border.all(color: CColors.white0, width: 2),
CWidgetState.disabled: Border.all(color: CColors.transparent, width: 0),
},
CButtonKind.tertiary: {
CWidgetState.enabled: Border.all(color: CColors.white0, width: 1),
CWidgetState.focused: Border.all(color: CColors.white0, width: 2),
CWidgetState.disabled: Border.all(color: CColors.gray70, width: 1),
},
CButtonKind.ghost: {
CWidgetState.enabled: Border.all(color: CColors.transparent, width: 0),
CWidgetState.focused: Border.all(color: CColors.transparent, width: 0),
CWidgetState.disabled: Border.all(color: CColors.transparent, width: 0),
},
};