Comment by Yura Babiy on Is it possible to connect MetaMask or other wallet,...
That is a way, but not the easiest one. I would like to see some nuget package.
View ArticleComment by Yura Babiy on Is it possible to connect MetaMask or other wallet,...
But that's just a general guide how to look for nuget package.. Have you found any useful packages targeting Xamarin ?
View ArticleComment by Yura Babiy on Using ES256 algorithm with jwt-dotnet for Apple...
Could you please provide the full method? I'm getting 400 error
View ArticleComment by Yura Babiy on Where I get from IOS Firebase API the Apple Revoke...
AuthorizationCode leaves only 5 minutes, and can be used only once. Otherwise, I'm getting 400 error. I haven't found this information anywhere except apple official documentation...
View ArticleComment by Yura Babiy on How to make Apple Sign In Revoke Token POST Request?
AuthorizationCode leaves only 5 minutes, and can be used only once. Otherwise, I'm getting 400 error. I haven't found this information anywhere except apple official documentation...
View ArticleComment by Yura Babiy on How to make Apple Sign In Revoke Token POST Request?
AuthorizationCode leaves only 5 minutes, and can be used only once. Otherwise, I'm getting 400 error. I haven't found this information anywhere except apple official documentation...
View ArticleComment by Yura Babiy on Issues using apple revoke auth token rest api for...
Have you found what was causing the issue when you were getting 200 code but it didn't work?
View ArticleComment by Yura Babiy on Revoke Apple sign in token for account deletion process
I'm getting 200 OK, but my app is not removed from the list of authorized apps. What do you think about this?
View ArticleComment by Yura Babiy on Apple REST API Revoke Auth
I was able to make it work. This answer is useful. stackoverflow.com/a/73234875/6157156
View ArticleComment by Yura Babiy on How to include all icons in Xamarin.iOS /...
@LiqunShen-MSFT thanks
View ArticleStatic constructor somehow blocks instance constructor
I have Xamarin.Forms app. Currently I am testing my app on Android and now I faced with issue that next view(page) is not showing. I started to debug it and where I stoped is when I am navigating to my...
View ArticleStrange try/catch block behavior
I am working with Github API via Octokit.net. Now I am writing code that responsible for TwoFactorAuth. When I send request for token, if it is 2FA account, than I must get...
View ArticleAnswer by Yura Babiy for Strange NullReferenceException and useless Call Stack
In Prism you can send parameters from current view model to view model of page, that you navigates. So I was sending parameters, and on another side I was taking them. BUT, I wasn't checking for their...
View ArticleStrange NullReferenceException and useless Call Stack
I decided to change layout in my xaml page from absolut to stacklayout and after that I had nullre.. exception when my app starts running. I commented from one to another all elements in page, even...
View ArticleAsync method that calls in ViewModel causes deadlock
I do requests to Github Api so I have async methods, these do this job. Before it, I always called they in method, that calls from command(actually DelegateCommand). But now I wanna do request in...
View ArticleAsync Method calls two times
I do async call from viewmodel, so I started to use Nito.Mvvm.NotifyTask class. It works good except one, that my async method calls two times. I'm not 100% sure that it is because of this, but I don't...
View ArticleAnswer by Yura Babiy for Bind properties to elements inside a Listview...
BindingContext, in other words "ItemsSource" for listview, is appliying to whole listview, include DataTemplate. So, if you wanna bind something, then it property should be in BindingContext, in your...
View ArticleDeep Navigation in Prism with MasterDetailPage causes double calling viewmodel
I have MasterDetailPage with burger button. For this I make this navigation path:var navigationStack = new Uri("https://Necessary/"+...
View ArticleAnswer by Yura Babiy for Strange behavior of Grid row height auto property
For those, who could face with something, like I did, that worked for me. I manually change column width:<controls:FlowListView x:Name="ReposList" HorizontalOptions="FillAndExpand"...
View ArticleStrange behavior of Grid row height auto property
I have listview with grid datatemplate, and I am experiencing strange behavior. When I add to cell StackLayout with two elements: multiline label and horizontal stacklayout, the row with auto height...
View Article