Let's try to learn complexity with simplicity. Please Share it and don't forget to SUBSCRIBE our channel for new videos : https://www.youtube.com/channel/UCCOTcYjHr9PVwkMC-Fugk0Q
Showing posts with label Xamarin. Show all posts
Showing posts with label Xamarin. Show all posts
Sunday, 4 October 2020
Thursday, 30 April 2020
Resolved: ScrollTo not working with grouped ListView in Xamarin.Forms
Introduction:
Sometimes ListView contains a grouped ItemsSource represented by a custom model class, and we may need to scroll to first item programatically.
Thursday, 23 April 2020
How to get a keyboard start capital letter in Entry in xamarin.Forms (C# - Xaml)
Introduction:
The Entry control defines a Keyboard property that allows an app to select the virtual keyboard that is displayed for the control. For example, a keyboard for entering a phone number should be different from a keyboard for entering an email address.Monday, 13 April 2020
Resolved: MISSING_PERMISSION_ACCESS_COARSE_LOCATION in Xamarin.Android (C# - Xaml)
Introduction:
Android considers accessing device location to be a secure permission, which typically requires the user to grant their permission to access the resource. The user may revoke this permission at any time. This means that a run time permission request should be performed prior to location permission.Friday, 13 March 2020
Xamarin.Forms: How to identify website link broken or not reachable in Webview (C# - Xaml)
Introduction:
We know that WebView is a view for displaying web and HTML content in your app. Due to security, sometimes website links will not work with outside network, so we need to identify it to show custom dialog to user.
We know that WebView is a view for displaying web and HTML content in your app. Due to security, sometimes website links will not work with outside network, so we need to identify it to show custom dialog to user.
Thursday, 5 March 2020
Xamarin.Forms: how to prevent to open specific Url links from WebView (C# - Xaml)
Introduction:
We know that WebView is a view for displaying web and HTML content in your app. Due to security, sometimes we may need to restrict to open specific urls in our app.
We know that WebView is a view for displaying web and HTML content in your app. Due to security, sometimes we may need to restrict to open specific urls in our app.
Wednesday, 19 February 2020
Xamarin.Forms Resolved: Cleartext HTTP traffic not permitted in Android
Introduction:
Starting with Android 9 (API level 28) cleartext(non-HTTPS) support is disabled by default? It is always recommended to make connections over HTTPS to ensure that any web communication is secure. This policy may have an impact on your development cycle if your app needs to download an image or file on a server hasn’t been configured for HTTPS.
Starting with Android 9 (API level 28) cleartext(non-HTTPS) support is disabled by default? It is always recommended to make connections over HTTPS to ensure that any web communication is secure. This policy may have an impact on your development cycle if your app needs to download an image or file on a server hasn’t been configured for HTTPS.
Tuesday, 18 February 2020
Xamarin.Forms Custom Renderer: Borderless Entry (C# - Xaml)
Introduction:
In this article, we can learn how to create entry without border using custom renderer
Description:
In Xamarin.Forms, there is no way to set border less properties to Entry in Xaml. Alternately we have to use custom renderers in platform specific projects like below
In this article, we can learn how to create entry without border using custom renderer
Description:
In Xamarin.Forms, there is no way to set border less properties to Entry in Xaml. Alternately we have to use custom renderers in platform specific projects like below
Thursday, 19 December 2019
Xamarin: How to sign an Android APK file in Visual Studio for Mac for beginners
Introduction:
After an application has been coded and tested, it is necessary to prepare a package for distribution. The first task in preparing this package is to build the application for release, which mainly entails setting some application attributes. In this article, we can learn how o sign Android APK in Visual studio for Mac.
After an application has been coded and tested, it is necessary to prepare a package for distribution. The first task in preparing this package is to build the application for release, which mainly entails setting some application attributes. In this article, we can learn how o sign Android APK in Visual studio for Mac.
Tuesday, 17 December 2019
Format DatePicker value to MM/dd/yyyy or MM-dd-yyyy in Xamarin.Forms (C# - Xaml)
Introduction:
In Xamarin.Forms, we can format datepicker value to specific date format using "Format" property in Xaml or C# code. But you might be faced the issues with date format. For example if you set datepicker Format to "MM/dd/yyyy", value will be shown in different format for some devices like "MM-dd-yyyy". In this article, we can learn how to fix this issues.
In Xamarin.Forms, we can format datepicker value to specific date format using "Format" property in Xaml or C# code. But you might be faced the issues with date format. For example if you set datepicker Format to "MM/dd/yyyy", value will be shown in different format for some devices like "MM-dd-yyyy". In this article, we can learn how to fix this issues.
Friday, 13 December 2019
Resolved: UnauthorizedAccessException for write or read file in Xamarin.Forms Android (C# - Xaml)
Introduction:
Android considers accessing external storage to be a dangerous permission, which typically requires the user to grant their permission to access the resource. The user may revoke this permission at any time. This means that a run time permission request should be performed prior to any file access. Apps are automatically granted permissions to read and write their own private files. It is possible for apps to read and write the private files that belong to other apps after being granted permission by the user.Sunday, 28 April 2019
MSAL: Azure Active Directory Authentication in Xamarin.Forms (C# - Xaml)
Introduction:
Microsoft Authentication Library (MSAL) is Latest generation of Microsoft authentication libraries. Allow you to acquire tokens for users signing-in to your application with Azure AD (work and school accounts), Microsoft (personal) accounts (MSA) and Azure AD B2C. It will also soon support a direct connection to ADFS 2019.
Microsoft Authentication Library (MSAL) is Latest generation of Microsoft authentication libraries. Allow you to acquire tokens for users signing-in to your application with Azure AD (work and school accounts), Microsoft (personal) accounts (MSA) and Azure AD B2C. It will also soon support a direct connection to ADFS 2019.
Wednesday, 3 April 2019
Visual Studio 2019 for Mac Update: Support for multiple instances
Introduction:
Visual Studio for Mac has always had support for opening multiple solutions in one window. But we’ve heard a lot of requests to support multiple windows for the IDE. Previously there is no option to open multiple instance’s of visual studio in Mac, manually I was used below command to open new instance of visual studio for mac.Description:
Step 1: Install latest Visual Studio 2019 for Mac from here.Step 2: To open a new instance, right-click on the icon in the dock and select New Instance:
FeedBack Note: Please share your thoughts, what you think about this post, Is this post really helpful for you? I always welcome if you drop comments on this post and it would be impressive.
Follow me always at @Subramanyam_B
Monday, 1 April 2019
Xamarin.Forms: How To Change GitHub Repository Language For C# Projects
Introduction:
We all know that Xamarin.Forms programming language is "C#". But I was struggling to get my GitHub repository to show my Xamarin.Forms project as “C#” and not as Java/other language. If you have this same problem, this article can teach you about "how to manually change GitHub repository language for xamarin.forms project to Csharp Language".
We all know that Xamarin.Forms programming language is "C#". But I was struggling to get my GitHub repository to show my Xamarin.Forms project as “C#” and not as Java/other language. If you have this same problem, this article can teach you about "how to manually change GitHub repository language for xamarin.forms project to Csharp Language".
Sunday, 31 March 2019
Hide ScrollView scrollbar in Xamarin.Forms (C# - Xaml)
Introduction:
A Xamarin.Forms ScrollView contains layouts and enables them to scroll offscreen. There are some situations when we want to hide default vertical/horizontal scrollbar for ScrollView in xamarin.forms. So we can learn it from this article.
A Xamarin.Forms ScrollView contains layouts and enables them to scroll offscreen. There are some situations when we want to hide default vertical/horizontal scrollbar for ScrollView in xamarin.forms. So we can learn it from this article.
Wednesday, 27 March 2019
Hide Listview scrollbar in Xamarin.Forms (C# - Xaml)
Introduction:
A Xamarin.Forms ListView is a view that displays a collection of data as a vertical list. There are some situations when we want to hide default vertical/horizontal scrollbar for listview in xamarin.forms. So we can learn it from this article.
A Xamarin.Forms ListView is a view that displays a collection of data as a vertical list. There are some situations when we want to hide default vertical/horizontal scrollbar for listview in xamarin.forms. So we can learn it from this article.
Wednesday, 6 March 2019
Friday, 1 March 2019
HtmlAgilityPack: Html parsing in Xamarin.Forms (C# - Xaml)
Introduction:
There are some situations when we want to parse and extract information from an HTML page instead of rendering it. In this case, we can use HtmlAgilityPack nuget package because it has a set of powerful API very easy to use. In this post, we will discuss how to set up an Xamarin.Forms project that uses HtmlAgilityPack and how to extract information from an HTML string.
There are some situations when we want to parse and extract information from an HTML page instead of rendering it. In this case, we can use HtmlAgilityPack nuget package because it has a set of powerful API very easy to use. In this post, we will discuss how to set up an Xamarin.Forms project that uses HtmlAgilityPack and how to extract information from an HTML string.
Wednesday, 27 February 2019
Resolved: RootViewController.PresentViewController is not working in Xamarin iOS (C#)
Introduction:
Some times we may get a situation where we need to present a UINavigationController modally and then push UIViewControllers within the UINavigationController. This required to start with the key window's root view controller and then find the most-presented view controller.
Some times we may get a situation where we need to present a UINavigationController modally and then push UIViewControllers within the UINavigationController. This required to start with the key window's root view controller and then find the most-presented view controller.
Monday, 28 May 2018
Xamarin things introduced at Build 2018 (7th May - 9th May)
Introduction:
They were so many exciting things for developers introduced in Microsoft Build 2018 about Microsoft products and technologies, including Xamarin.
Subscribe to:
Posts (Atom)