From 287eaca690feedad3f683ffc9182304a8e9daa7a Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 18 Sep 2016 00:24:29 +0200 Subject: [PATCH] implementing the validation event handling from Forms --- BookAStar/BookAStar/IPlatform.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BookAStar/BookAStar/IPlatform.cs b/BookAStar/BookAStar/IPlatform.cs index 787e7f4b..2459d997 100644 --- a/BookAStar/BookAStar/IPlatform.cs +++ b/BookAStar/BookAStar/IPlatform.cs @@ -1,4 +1,5 @@ using BookAStar.Model.Auth.Account; +using System; using Xamarin.Forms; using Yavsc.Models.Identity; @@ -24,7 +25,7 @@ namespace BookAStar object InvokeApi(string method, object arg); - View CreateMarkdownView(string markdown); + View CreateMarkdownView(string markdown, Action update); } }