-
-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AppLinkEntry Support #963
AppLinkEntry Support #963
Conversation
@twop After some investigation this how the feature could be implemented. and detailed some of the limitation . Not sure if there is a way to fix the limitation I found. @TimLariviere and yourself know the internals better that I do . So any feedback is appreciated |
Maybe you can add a AppLinks collection to CustomApplication to be able to use widget collection? |
Hmm, actually you can do it without adding a new property to CustomApplication. You can create a fake "AppLinks" collection attribute that would direct update Application.AppLinks.Register/Deregister (see NavigationPage.Pages for example) |
…--support # Conflicts: # src/Fabulous.XamarinForms/Controls.fs # src/Fabulous.XamarinForms/Views/Application.fs
Implementation of fabulous-dev/Fabulous.XamarinForms#21
In order to support Deep linking a Indexing we need to:
Limitation
BUT AppLinks is not a List of AppLink is just and Intercase AppLinks . So can not use a widget collection.
Workaround