Code

Learn free code

ListTile Flutter

ListTile is generally used to populate a ListView in Flutter. ListTile makes populating ListView very simple. Here we will cover all parameters of ListTile. title The title can take any widget. Usually, it will a Text Widget subtitle The subtitle is the smaller text showing below the title leading The leading property is the starting section of the ListTile. You add any

ListTile Flutter Read More »

SharedPreferences in Kotlin Android Studio

SharedPreferences | Android Studio | Kotlin SharedPreferences is one of the types of saving data in Android Devices. You can save String, int, boolean, long, float, and Set<String>  types of data in SharedPreferences. In SharedPreferences data is saved in the key-value form. If you have a relatively small collection of key-values that you’d like to save, then you should use the SharedPreferences APIs. You can Add, Edit/Modify and Remove data from the SharedPreferences easily.To

SharedPreferences in Kotlin Android Studio Read More »