Home > Software engineering >  Flutter links then firebase write
Flutter links then firebase write

Time:01-15

I'm creating a shopping list app using flutter and Firebase database where users can share their own shopping list. I'd that users can share a link where other users just tapping that link can open my app and see the shopping list shared. So when a user tap the link automatically my app opens up and write a key value in firebase database. How can I achieve my purpose? I don't even know what to search in google? :s

Thank you

CodePudding user response:

What you're describing is (within Firebase) achieved by the product called Firebase Dynamic Links. With these you can generate a link to any screen in your app, so that when the user clicks the link they are taken to that screen (even if they have to install the app first).

So I recommend reading the documentation on creating dynamic links and receiving dynamic links in Flutter.

  • Related