PaperFABProps

PaperFABProps = ({String? color, String? customColor, bool? disabled, String? icon, String? label, bool? loading, bool? small, Map<String, dynamic>? style, bool? visible})

Props for Paper FAB (Floating Action Button)

Implementation

typedef PaperFABProps = ({
  String? icon,
  String? label,
  bool? small,
  bool? visible,
  bool? loading,
  bool? disabled,
  String? color,
  String? customColor,
  Map<String, dynamic>? style,
});