Month: September 2019

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