๐Ÿงฉ random_emoji_picker

pub package GitHub stars License: MIT

A lightweight Flutter package to generate random emojis with a single line of code. Perfect for UI placeholders, games, chats, or just some fun!


๐Ÿš€ Features

  • ๐Ÿ”น Simple one-liner emoji generator
  • ๐Ÿ”น Supports all Flutter platforms
  • ๐Ÿ”น Custom emoji list support (coming soon)
  • ๐Ÿ”น Tiny and efficient

๐Ÿ“ฆ Installation

Add the following to your pubspec.yaml:

dependencies:
  random_emoji_picker: ^0.0.4

๐Ÿงช Usage

import 'package:random_emoji_picker/random_emoji_picker.dart';

void main() {
  final emoji = RandomEmoji.getEmoji();
  print("Random Emoji: $emoji");
}

๐ŸŽฏ Example

Clone this repo and navigate to the example folder:

git clone https://github.com/your-username/random_emoji_picker.git
cd random_emoji_picker/example
flutter run

๐Ÿ“ Project Structure

random_emoji_picker/
โ”œโ”€โ”€ lib/
โ”‚   โ”œโ”€โ”€ main.dart
โ”‚   โ””โ”€โ”€ random_emoji_picker.dart
โ”œโ”€โ”€ example/
โ”‚   โ””โ”€โ”€ main.dart
โ”œโ”€โ”€ pubspec.yaml
โ”œโ”€โ”€ LICENSE
โ””โ”€โ”€ README.md

๐Ÿ“ƒ License

MIT License. See the LICENSE file for more details.

๐ŸŒ Pub.dev Page :https://pub.dev/packages/random_emoji_picker

๐Ÿ’ป GitHub Repo :https://github.com/osamanoor17/random_emoji_picker

Made with โค๏ธ in Flutter.