I'm working on an online course selling app, and there I need to develop an automatic certificate generator with student names and course names. How can I integrate that? and I saw some websites for certificate generating, can I integrate that in Flutter app?
CodePudding user response:
You can use a service like Anvil or Maybe even SendGrid templates to email the certificate directly with a simple REST API request.
You will just need to add some custom info in the body of the request like the name of the recipient and the date of issuance. And you will probably set the custom certificate template on the service's website.
CodePudding user response:
I'm assuming you want to design the certificate yourself. There are a couple of ways you can do that like creating it using widgets or using an image. If you use an image, you'll have to layer the user's info on top, which can be tricky to position correctly. Personally, I would probably generate the certificate using widgets and a package like this to create the image from that.