keyboardTheme property

FxKeyboardTheme get keyboardTheme

Implementation

FxKeyboardTheme get keyboardTheme => FxKeyboardTheme(
  padding: EdgeInsets.symmetric(horizontal: sizes.md, vertical: sizes.md),
  keyPadding: EdgeInsets.symmetric(horizontal: sizes.md),
  background: colors.surfaceVariant,
  foreground: colors.textPrimary,
  spacing: sizes.md,
  keyAspectRatio: 1.2,
  keySize: Size(sizes.icon64, sizes.icon64),
  textStyle: typography.bodyMedium.copyWith(fontWeight: FontWeight.w600),
  shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(sizes.radiusFull),
  ),
  constraints: BoxConstraints(
    minWidth: 300.sp,
    maxWidth: sizes.screenWidth * 0.8,
  ),
);