CodeGrue
CodeGrue
Not sure if the best way but this code will strip off the mask: ``` dart import 'dart:math'; void main() { String mask = 'AA (000) @@@-@@@@ **'; String maskedValue...
The readme describes how to do this under "Passing Parameters". Or am I misinterpreting the question? https://github.com/gurleensethi/sailor#passing-parameters
I see what you mean as I dig in. Parameters don't allow the value to be in the route path such as `/secondPage/{id}` This seems required to make Sailor fully...
These are the ones I get as unassigned: ``` [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] ```
You can definitly have a custom menu (master) page using FreshMvvm like this: ``` var masterdetail = new FreshMasterDetailNavigationContainer(); masterdetail.Master = FreshPageModelResolver.ResolvePageModel(); masterdetail.Detail = FreshPageModelResolver.ResolvePageModel(); ```
I created this workaround, bypassing FreshMVVM, using this article: https://github.com/twolfprogrammer/Xamarin.Forms-Hamburger-Menu-Example/blob/master/App.xaml.cs - save FreshMasterDetailNavigationContainer to a static varible in App.xaml.cs ` private static FreshMasterDetailNavigationContainer _masterDetailNav; ` - provide a public property...
It seems to me that ANY exception in Xamarin or C# just becomes a FreshMVVM failure exception, with no way to see the actual problem. Makes troubleshooting very difficult. Unless...
Was just going to write that it would be helpful to list the validators available in the Readme. (I almost passed on using this as it looked like it only...
I would upvote this also. However, it's easy enough to convert an enum to an IEnumerable. This doesn't seem to work either an ItemSource. Does PickerCell require a collection of...
What does this error mean. I get them all time also.