RCKEmojiConfig constructor

const RCKEmojiConfig({
  1. Color? backgroundColor,
  2. double height = kInputExtentionHeight,
  3. int rowCount = 3,
  4. int columnCount = 8,
  5. double emojiSize = 24.0,
  6. double rowSpacing = 10.0,
  7. double columnSpacing = 5.0,
  8. EdgeInsets padding = const EdgeInsets.all(15.0),
  9. RCKEmojiPageIndicatorConfig pageIndicatorConfig = const RCKEmojiPageIndicatorConfig(),
  10. Widget deleteIcon = const Icon(Icons.backspace, color: Color(0xFF666666), size: 24),
  11. RCKEmojiSendButtonConfig sendButtonConfig = const RCKEmojiSendButtonConfig(),
  12. List<String>? customEmojis,
})

Implementation

const RCKEmojiConfig({
  this.backgroundColor,
  this.height = kInputExtentionHeight,
  this.rowCount = 3,
  this.columnCount = 8,
  this.emojiSize = 24.0,
  this.rowSpacing = 10.0,
  this.columnSpacing = 5.0,
  this.padding = const EdgeInsets.all(15.0),
  this.pageIndicatorConfig = const RCKEmojiPageIndicatorConfig(),
  this.deleteIcon =
      const Icon(Icons.backspace, color: Color(0xFF666666), size: 24),
  this.sendButtonConfig = const RCKEmojiSendButtonConfig(),
  this.customEmojis,
});