- updating readme

This commit is contained in:
FlorianDahn 2019-10-11 22:38:50 +02:00
parent 9cbde4830e
commit 1f9539a23d

View File

@ -706,12 +706,9 @@ PromptDialog pd = new PromptDialog("Please tell me your name ?");
pd.Completed += async (s, en) =>
{
await this.Device.Send("Hello " + pd.Value);
var tf = new TestForm2();
await pd.NavigateTo(tf);
};
await this.NavigateTo(pd);
await this.OpenModal(pd);
```