Installation First, add image_picker_gallery_camera as a dependency in your pubspec.yaml file. Install it You can install packages from the command line: with Flutter: Alternatively, your […]
Read moreCategory: Kotlin
Simple SharedPreference Functions – Kotlin
Android provides many ways of storing data of an application. One of these ways is called Shared Preferences. Shared Preferences allow you to save and […]
Read moreRoom Database with Kotlin
Room is a persistence library, part of the Android Jetpack. The Room is now considered as a better approach for data storing than SQLiteDatabase. The […]
Read moreBluetooth Printer In Android
1 Open Android Studio. 2 Go to File => New => New Project. Write application name . Then, check Include Kotlin Support and click next […]
Read moreEdittext Text ChangeListener Kotlin
Action whenever the text is changed in the EditText View. Application to implement a listener TextWatcher object, for EditText to trigger an action on text […]
Read moreNotifications in Kotlin Oreo (8+)
Create a new Project in Kotlin Message can display outside of our application normal UI 1 Open Android Studio. 2 Go to File => New […]
Read moreAndroid Radio Buttons Using Kotlin With Example
Radio buttons allow the user to select one option at a time. A RadioButton as two states, selected and unselected. Create a new Project in […]
Read moreAndroid spinner Using Kotlin With Example
Spinners provide a way to select one value from a list set. In the default state, a spinner shows its currently selected value. Create a […]
Read moreBottom Navigation View Android
BottomNavigationView creates bottom navigation bars, making it easy to explore and switch between top-level content views with a single tap. Bottom Navigation Bar always stays at the bottom of your application […]
Read moreAndroid Splash Screen with Kotlin
Android Splash Screen is the 1st screen visible to user when app launches. Splash screen displays some animations or App logo for a short time […]
Read more