airbnb / DeepLinkDispatch

A simple, annotation-based library for making deep link handling better on Android
http://nerds.airbnb.com/deeplinkdispatch/
4.37k stars 409 forks source link

Can i use uri-fragment ( # ) field access directly from bundle? #358

Open D000L opened 1 year ago

D000L commented 1 year ago

I want use fragment field ( # ) access directly from bundle

current can access like this.

Uri(bundle.getString(DeepLink.URI)).fragment

but i want access at bundle like this

https://doool.com/2DX#profile
->
@WebDeepLink("/{id}#{tab}")

bundle.getString("tab")
or
bundle.getString(DeepLink.FRAGMENT)

do have a support plans? if already supported it please tell me how to use

Thanks