You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository serves as a dedicated space for documenting and sharing my journey of learning the Kotlin programming language. It aims to provide a comprehensive collection of resources, examples, and projects to support my learning process and showcase my progress.
Welcome to the "World Of Kotlin - (The Kotlin Programming Course)" This course is designed to help you learn and master the fundamentals of the Kotlin programming language. Whether you're a beginner or an experienced developer, this course will cover essential topics and provide opportunities for hands-on learning.
This repository contains the source code of a financial application developed in Kotlin using Android Studio. The application allows for expense recording, income tracking, category management, and financial balance calculation.
In Kotlin, a range is a sequence of values that can be represented using the range operator ... Ranges are used to represent a continuous sequence of values, such as a range of numbers or characters.
In Kotlin, a secondary constructor is a way to define additional initialization logic for a class. Unlike the primary constructor, which is defined in the class header, a secondary constructor is defined inside the body of the class.
The Kotlin continue statement breaks the loop iteration in between (skips the part next to the continue statement till end of the loop) and continues with the next iteration in the loop.
Bu proje, popüler anime ve manga platformu Crunchyroll'un 'My List' sayfasının tasarımını model alır. Kullanıcıların favori içeriklerini kaydedebilecekleri ve daha sonra kolayca erişebilecekleri özel bir sayfa olan 'My List'in kullanıcı arayüzü tasarımını içerir. Projede, modern ve minimalist bir yaklaşımla hazırlanmıştır.
Kotlin when expression is similar to the switch statement in C, C++ and Java. Kotlin when can be used either as an expression or as a statement, simply like a switch statement in Java. If it is used as an expression, the value of the first matching branch becomes the value of the overall expression.