i have the following column
late final TextEditingController controller = TextEditingController();
Column(
children:[
GestureDetector(
onTap: (){
// 1- here How can i copy the emoji
// 2- add it to controller (locate it to the current location where text field cursor located )
},
child: Text('🙂')
),
TextField(
controller: controller ,
)
]
)
1- here How can i copy the emoji
2- add it to controller (fitting it to the current location where text field cursor located )
2
Answers
Emoji Picker
You can use this library.
try this