emoji_dialog_picker 1.0.1 copy "emoji_dialog_picker: ^1.0.1" to clipboard
emoji_dialog_picker: ^1.0.1 copied to clipboard

Emoji dialog picker makes it easy to select emojis from any platform.

example/lib/main.dart

// ignore_for_file: avoid_print

import 'package:flutter/material.dart';
import 'package:emoji_dialog_picker/emoji_dialog_picker.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: Scaffold(
        body: Center(
          child: EmojiButton(
            emojiPickerView: EmojiPickerView(onEmojiSelected: (String emoji) {
              print('Emoji selected: $emoji');
            }),
            child: const Text('Click Me'),
          ),
        ),
      ),
    );
  }
}
3
likes
80
pub points
60%
popularity

Publisher

verified publishersortedstorage.com

Emoji dialog picker makes it easy to select emojis from any platform.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

eva_icons_flutter, flutter, freezed_annotation, json_annotation

More

Packages that depend on emoji_dialog_picker