pariyatti / mobile-app

The Pariyatti mobile app
https://pariyatti.app/
GNU Affero General Public License v3.0
8 stars 11 forks source link

Deep Links #45

Open deobald opened 3 years ago

deobald commented 3 years ago

The app should register itself against pariyatti:// (or equivalent) deep links on both iOS and Android.

NamanShergill commented 3 years ago

I suggest the app should use a routing library. Will make this very seamless and navigation much easier to handle in the codebase.

I personally use https://pub.dev/packages/auto_route/versions/1.0.0-beta.10 in my projects, maybe it could help here as well?

riverscuomo commented 6 months ago

Just chiming in here to say that as I started working on implementing deep linking for the dhamma.org mobile apps, I encountered this same situation: the apps don't have defined routes. I've considered using go_router, which I had success with on another project.

deobald commented 6 months ago

@riverscuomo Very cool! That looks like a decent option ... seems like a mature library. Thanks!