shallow icon indicating copy to clipboard operation
shallow copied to clipboard

A cute demo of F# and UIKit Dynamics with Xamarin.

Results 4 shallow issues
Sort by recently updated
recently updated
newest added

fsproj has wrong path for Xamarin.MonoTouch.FSharp.targets resulting in build error in recent versions of Xamarin Studio. Xamarin studio appears to attempt to fix by adding the Csharp targets path. (adding...

I'm new to Xaramin, but it looks to me that this sample app is targeted at iOS. I'm very interested in doing F# cross platform mobile development. I have 2-3...

I had to implement a delegate, which luckily was really easy in F#: ``` fsharp // Use delegate to display the placeholder message text.Delegate

For example, to handle `UIKeyboard.WillShowNotification`, I have to call `UIKeyboard.Notifications.ObserveWillShow`, and manually wrap a function in an `EventHandler`: ``` fsharp UIKeyboard.Notifications.ObserveWillShow(EventHandler(fun sender args -> doSomething args)) ``` When I would...