Thursday October 17th, 2019

ASP.NET Web API

Hello, When we develop an application, we may want to keep data in the local or real time databases. In my previous articles, I wrote about the how to use sqlite. Now, I would like to create a web api using by the ASP.NET. While writing this article, I follow the Microsoft Documentation. Firstly, I created a blank solution and then i added the ASP.NET Core Web […]

Friday October 11th, 2019

Xamarin.Forms Text Analysis

Hello, In my previous article, I try to  wrote about the face recognition and in this article, i will try to make Text Analytics app. Text Analytics can be used for the different purposes. In the application, I will try to make sentiment analytics, language analytics, important entities or people analytics and key phrases of the text. Firstly, Login into Azure and create a Text […]

Wednesday October 9th, 2019

Xamarin.Forms Face Recognition

Hello, Artificial Intelligence applications is getting better day by day and while this area is developing, I would like to add AI properties to the my applications. Thanks to Azure, We can easily add the AI and Machine Learning’s API to our applications. I am going to write articles about the using Cognitive Services in Xamarin.Forms application in the coming days and this article will be […]

Sunday October 6th, 2019

Xamarin.Forms Facebook

Hello, Facebook is the one of the most used social media application and today i am going to show you how to make Facebook design with Xamarin.Forms. Lets start the coding(Create a blank Xamarin.Forms application). When we open the Facebook, We see a LoginPage. Firstly, I tried to do Login Page design so i created a page. I added the StackLayout to the page and […]

Tuesday September 24th, 2019

Swift Segue

Hello, when we develop an iOS application using with the Swift,we may want to routing between the pages. To route between the pages in iOS, we need the use Segue. Segue help us the navigate between the View Controllers. To show how to use segue, I created a Blank Swift project in Xcode. In the Main.storyboard, I added a new ViewController and i created a new class […]

Wednesday September 18th, 2019

Xamarin.Forms Multilingual

Hello, When we develop an application we want it to be a global application. For that we need to support different languages in the application and thanks to that we may have more user. I develop Xamarin.Forms application and to add different languages in Xamarin.Forms application we need to use a plugin. The name of the plugin is Plugin.Multilingual, I found this plugin with research on […]

Tuesday September 17th, 2019

PNote

Hello, I finish my PNote project. I was working a while on that project and i still update the application. PNote is a note application which you can keep image so it means image notes also you can make normal notes. I developed this project with Xamarin.Forms and I used Firebase for the database. Here are the screens of the application; For the download app […]

Monday September 16th, 2019

Xamarin.Forms Borderly Picker

Hello, When i develop an application with Xamarin.Forms, I need to put a picker and picker has different design in the Android and iOS. I want to show picker like in the iOS. For that i need to write Custom Renderer for the Android and iOS. Firstly, in the portable i create a class which name is CustomMyPicker and i inherit from Picker. public class CustomMyPicker […]

Sunday September 8th, 2019

Xamarin.Forms Taking Picture

Hello, when i was develop an application, i was need the take a picture and pick the picture. I researched about the taking and picking picture and i find the Xam.Plugin.Media plugin which created by the James Montemagno. For the use that plugin, we need to make some arranges. Firstly, after the creating project we need the add the Xam.Plugin.Media. Later inside of the Android platform and […]

Thursday August 29th, 2019

Xamarin.Forms Shell

Hello, with Xamarin.Forms 4.0 Shell properties came to Xamarin.Forms. The one of the aim of the usage of Shell is making less complication on mobile development. Shell properties is not exactly ready for usage of the mobile development now. With the help of the Microsoft documentation, i made an application using with Shell. In Visual Studio 2019, There is an option to create project with Shell template. I create […]