getEmojiSize method

double getEmojiSize(
  1. double width
)

Get Emoji size based on properties and screen width

Implementation

double getEmojiSize(double width) {
  final maxSize = width / columns;
  return min(maxSize, emojiSizeMax);
}