here is some of my process
1- i am picking image from galley using image_picker
2- i display it using Image.file widget
3- i wrap Image.file into stack widget and put Text at center like following
Stack(
alignment: Alignment.center,
children: [
Image.file(
File(myImage),
fit: BoxFit.cover,
height: double.infinity,
width: double.infinity,
),
const Text('Hello world')
],
),
4- then uploading image to server using firebase_storage
now the question
How can i upload my image with my Text('Hello world')
in other world : How do I make text as part of an image
any plugins for that ?
What should I look for?