We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Recent Emojis aren't displaying, is there any way to display the recent emojis or remove the recent emojis section.
I am Using Flutter Version: 2.0.6 emoji_picker: ^0.1.0
import 'package:flutter/material.dart'; import 'package:emoji_picker/emoji_picker.dart'; void main() => runApp(MainApp()); class MainApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: "Test", debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar( title: Text("Emoji Picker Test"), ), body: MainPage(), ), ); } } class MainPage extends StatefulWidget { @override MainPageState createState() => new MainPageState(); } class MainPageState extends State<MainPage> { @override Widget build(BuildContext context) { return EmojiPicker( rows: 3, columns: 7, buttonMode: ButtonMode.MATERIAL, recommendKeywords: ["racing", "horse"], numRecommended: 10, onEmojiSelected: (emoji, category) { print(emoji); }, ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Recent Emojis aren't displaying, is there any way to display the recent emojis or remove the recent emojis section.
I am Using Flutter Version: 2.0.6
emoji_picker: ^0.1.0
The text was updated successfully, but these errors were encountered: