Category: Genel

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 […]

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 […]

Sunday August 25th, 2019

Google Play Console – Updating App With New Signing Key

Hello, I was published an application on the Play Store which was developed by Xamarin forms and the name of the application is Kolay Çeyiz. After a while, I was had to change my laptop and I did not know I was have to keep the the information of the application(KeyStore), so i lost the informations. I was would like to update my application in the Play […]

Thursday August 15th, 2019

Xamarin.Forms – Netflix

Hello, Today, I will try to make Netflix mobile application design using Xamarin.Forms. Netflix is the one of the most popular application nowadays and I think Netflix has a elegant mobile design. Thanks to Xamarin.Forms, I can make the design same time in the iOS and Android platforms. Firstly, I opened the Xamarin.Forms project and I tried to make 4 screens of the Netflix. When we opened the […]

Tuesday August 13th, 2019

Swift App – iOS Calculator Part-2

In the previous article, I wrote the design of the iOS Calculator. In this article, I will try to write the idea of the how calculator work in the iOS Calculator. Firstly, I opened the project which we created before. In the project, I go ViewController.swift and then i add the operation buttons, number buttons and the result label from MainStoryboard. @IBOutlet weak var resultLabel: UILabel! override […]