Hello there, I think it would be good if the Notify function had some more parameters, like the possibility to Navigate or go Back. Either after a timeout or after the click on the close button. User stories : 1. - User uses an EditForm to create a new Item (in SP list say) - User click on Button (with onSelect=SubmitForm(EditForm)) - EditForm.onSuccess = Notify("Your item has been created - it will take 5min to show up", Success, Navigate(BrowseScreen,Cover)) - The user gets the little notification displayed. - When he clicks on the close icon, the app navigate to the BrowseScreen. 2. - User uses an EditForm to create a new Item (in SP list say) - User click on Button (with onSelect=SubmitForm(EditForm)) - EditForm.onSuccess = Notify("Your item has been edited - it will take 5min to show up", Success, Back()) - The user gets the little notification displayed. - When he clicks on the close icon, the app navigate to the previous screen (say the Detail Screen, before he edited the item). 3. - User uses an EditForm to create a new Item (in SP list say) - User click on Button (with onSelect=SubmitForm(EditForm)) - EditForm.onSuccess = Notify("Your item has been edited - it will take 5min to show up", Success, 1000, Back()) - The user gets the little notification displayed. - After 1 second, the notification closes and the application oes back to the previous screen (say he DetailScreen)
... View more