pinInputTheme property

FxPinInputTheme get pinInputTheme

Implementation

FxPinInputTheme get pinInputTheme => FxPinInputTheme(
  spacing: sizes.md,
  height: sizes.inputHeight + sizes.sm,
  width: sizes.inputHeight,
  padding: EdgeInsets.symmetric(horizontal: sizes.md),
  borderRadius: BorderRadius.circular(sizes.radiusMd),
  textStyle: typography.titleLarge,
  errorTextStyle: typography.bodySmall.copyWith(color: colors.error),
  backgroundColor: colors.surfaceVariant,
  errorBorderColor: colors.error,
  focusBorderColor: colors.primary,
  borderWidth: 2.0.w,
  border: InputBorder.none,
);