Category: C#

Mobil programlamada kendinizi geliştirin

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

Saturday March 30th, 2019

Xamarin.Forms Video Player

Hello, When we are making projects sometimes we may need to put video player to your application or maybe you develop a projects for the playing video applications. In some projects which i developed with Xamarin.Forms, i need to put an video player and for the putting an video player i made some steps. After these steps i can easily play videos on my projects. […]

Thursday February 28th, 2019

Xamarin Forms Signature Pad

In some cases we may want to take sign from user, in this kind of cases in xamarin forms we can solve this problem with adding nuget package. To have signature pad we have to install a nuget package which name is Xamarin.Controls.SignaturePad.Forms. After the adding nuget packages we just have to add an address of the signature pad and use this pad in our […]

Thursday February 28th, 2019

Xamarin Forms Lottie Animation

When we develop a app, we want to use some animations to have better design in app. To use animation in Xamarin Forms, we use lottie nuget package which was created by Airbnb. To Add animation to our project we have to go nuget package manager and install the lottie nuget package. In nuget package manager, we should choose the package which is fit the our […]

Tuesday January 29th, 2019

Xamarin.Forms Splah Screen

Splash screen is a screen when you open your application. Splash screen stay on the screen until the your application load data. When you use splash screen on your xamarin application you have to write some special code for each platform, I will do for the android. I will add picture for my splash screen, for that i have to add picture to the drawable […]

Monday January 28th, 2019

Xamarin Forms Lazy Loading(Infinite Scroll)

When we are making an app, we add some features to make application have better design. One of the feature is that Lazy Loading. Lazy loading works like, When we have a list view and we have specific number item, we scroll the screen and then other items appear in that specific number. I made a simple application to show how to use lazy loading. In this […]

Wednesday November 14th, 2018

Xamarin Forms Reddit Design

Hello my friends, Today i will make one of the most used social app which name is Reddit. I will design the main screen of the reddit using with the Xamarin.Forms. I try to design Reddit but i did not find the same icons so it can be seem a little bit different but if you can find the right icons it will be better […]

Monday November 5th, 2018

Xamarin.Forms Custom Renderer

When we making programs, we want use different features of the objects. Maybe you want to give different features for on different platforms, For the make that we use Custom Renderers. We can give different views to the object on different platform like iOS, Android,etc.. and that can help your project to have better design. In this project, i will give some features to the […]

Friday March 30th, 2018

C# Array

Array is the structure which keep the variables consecutively on the ram. Arrays are important for the all programing languages. With C programming language, I made the some programs and we can make these programs with C#. For the examples click here. Firstly, I will make fibonacci loops using with the arrays.  Code Sequence; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { class […]