Android Day 21 Let’s show our items in the List
Android Day 21 Let's show our items in the List I use an empty lambda expression and a new composible for this, don't worry, I will share more lambda expression…
Youtuber @CodeWithWilliamJiamin's Website
Android Day 21 Let's show our items in the List I use an empty lambda expression and a new composible for this, don't worry, I will share more lambda expression…
Android Day 22 Let's add edit and save functionality to our Contact App I first seperate the dialog to a seperate composible, so we are not having so much things…
Android Day 20 Let's create a more complex layout logic ! A contact App Mock! Let's make a contact app mock. It will have the functionality of adding contact info…
Android Day 19 How to collapse the dropdown menu? Let's cut the chase : We are going to use state variable to control it. For example, using onDismissRequest = {…
Android Day 18 Why somethings I can't click anywhere else when the dropdown menu is working and why the input textfield won't show anything while I click? First, somethings you…
Android Day 17 How to change and make button have more selection functionality? package com.williamjiamin.ourowncomposable import android.os.Bundle import android.widget.Toast import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.layout.Arrangement import…
Android Day 16 Let's talk about icons! 1.https://fonts.google.com/icons 2.Android Studio: If you're using Android Studio, you can use the built-in Vector Asset Studio to browse and import Material icons directly…
Android Day 15 How to make a customised logo text? Today, we are going to make some customised text at the top of our app to serve as a logo:…
Android Day 14 How to add custimized image as your app logo? Very simple one this day, you just need to add an image drag and drop to drawable. package…
Android Day 13 When to choose spacer and when to choose padding, in my experience. Some of you guys may think that padding is good and convinent to use than…