Provide a way to get at the underlying Xamarin control
See original GitHub issuePlease. Use case is showing the DatePicker dialog from a different control such as a button or icon. This is done by calling Focus()
on the Xamarin DatePicker control. I don’t think a ‘focus’ attribute is applicable here as it would require Fabulous to track the state of the dialog. Access to the Xamarin control may also be useful for animation up the until the proper solution for animation has been implemented.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:13 (3 by maintainers)
Top Results From Across the Web
Controls Reference - Xamarin
A description of all the user interface elements used to construct a Xamarin.Forms application. This article lists the control groups that ...
Read more >Xamarin.Forms accessing controls written in markup from ...
To access a Forms control in the code-behind, you need to assign it a name, using the x:Name attribute. in XAML:
Read more >Implementing a View - Xamarin
This article demonstrates how to create a custom renderer for a Xamarin.Forms custom control that's used to display a preview video stream ...
Read more >Xamarin.Forms: How to create an Initials View as custom ...
In this blog post I want to show you how I'm creating a custom control using the default controls for Xamarin.Forms which work...
Read more >Create Custom Controls using BindableProperty for Xamarin ...
If you are looking to create custom controls for Xamarin.Forms, you have come to the right place. In this video we will learn...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is now implemented through either the
created
callback or by usingViewRef
, see the brief docs onViewRef
https://fsprojects.github.io/Fabulous/views-animations.html#viewrefs@draganjovanovic1 It should be available before tonight if I find time.