EmojiGifMenuStack constructor

const EmojiGifMenuStack({
  1. Key? key,
})

EmojiGifMenuStack should be put inside the Stack structure

This allows the Emoji-Gif-Picker-Menu to be shown at screen

This allows the Emoji-Gif-Picker-Menu to be shown at screen

Put inside your MaterialApp

Widget build(BuildContext context) {

return MaterialApp(

builder: (context, child) {

 return Stack(

   children: [
     child!,
     const EmojiGifMenuStack(),
   ],
 );

},

home: const MyHomePage(), ); }

Implementation

const EmojiGifMenuStack({super.key});