skip to Main Content

I want to develop an invitation card maker app in flutter so the issue is that I don’t know what kind of data I will need to import from the backend to make my cards editable. i have designed cards in photoshop but I don’t know how to make them editable in a mobile app. if anyone has a suggestion please give me your suggestions

2

Answers


  1. Chosen as BEST ANSWER

    Hi all I am very happy that I finally found the solution.

    So we have to first import the background image from API and load text data on it then we can use flutter packages to edit those texts.

    But there is one thing you need to do before you import designs to the mobile app. You will need to have a perfect pixel size of font and background otherwise it will be overlapped.

    I have images with dimensions of 3000*5000 so I have used aspect ratio for the responsiveness in every device.

    And I have used Figma to design cards so we can get all CSS very fast for every line of text and then I am converting it to JSON using CSS to js converter and js to JSON converters.


  2. I’m glad to be able to help you.

    In those cases you do the following:

    1. Receive image to edit.
    2. Use external library made to edit photos (https://pub.dev/packages/image_editor_pro)
    3. Send edited image to the backend and replace the old one.
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search