I should point out that the actual user input text color will remain black with dark mode on (meaning you can't see it), but if you wrap your OutinedTextField in a surface, it will fix this issue. Thought I'd share for my fellow dark mode elitists.
@saharas7635 Жыл бұрын
Thank you
@heshamabdo60242 жыл бұрын
Thank you so much
@drazen.antunovic Жыл бұрын
svaka cast brt
@pltsm39703 жыл бұрын
I have two EditText that the value is time First EditText val = 20:00 Second EditText val = 22:30 Action : 20:00 - 22:30 = 2:30 I want to show Result in decimalnumber TextviewResult = 2.5
@peterfraga40233 жыл бұрын
Hi Professor, I am having an issue with my IDE... This code gives me an error on the .fillMaxSize() I deleted what I had and restarted and still gives me an error... there was another error in another part but when I get to it I will mention it. I saw your video on themes, but I can't get back to darcula... original... fun Greeting() { Column( modifier = Modifier.fillMaxSize(), horizontalAlignment = Alignment.CenterHorizontally, verticalArrangement = Arrangement.Center ) { } }
@peterfraga40233 жыл бұрын
Found the answer to the problem... in - the correction is (incase someone else has the same problem...) when you press the first import is - import java.lang.reflect.Modifier instead of import androidx.compose.ui.Modifier... I changed it and it works,...thanks...
@StevdzaSan3 жыл бұрын
You might have added a wrong import, it happens.
@Cool-c7y3 жыл бұрын
Sir I want to make the system navigation (where the back button and home button is present) I want to make its color white , I found a method but it also make the icon white and icon didn't see Is ther any other method to make it white with visible dark icons
@the_sharma_amit3 жыл бұрын
Please make videos on Dependency injection, Daggar, Daggar 2, Hilt...
@enzoteles20373 жыл бұрын
is there a function to clean all every OutlinedTextField programmatically?
@danishmansoori51133 жыл бұрын
Can you show us how to add error message under Text Fields and Password Field if we click the button with empty text fields ?
@hanasakura45413 жыл бұрын
Thanks
@StevdzaSan3 жыл бұрын
You're welcome 👍
@seanaquillaemmanuel62573 жыл бұрын
I want to learn android kotlin, there is an android java tutorial, do i need to learn?
@devildevil8733 жыл бұрын
Sir I have one doubt I can't explain it by writing I have to send the screen recording so how can I contact u so that u can help me 😭😭🙏🙏🙏🙏plz help me sir bcz.. it's my project and I got stuck in this problem
@reshmapatil49542 жыл бұрын
how to add rectangle border to text field
@atchayvarma40103 жыл бұрын
Does Compose came to the stage of using it in production?
@StevdzaSan3 жыл бұрын
Well soon the stable version will come out so yeah. 👍👌
@nathankrebs83913 жыл бұрын
Stable version came out yesterday. Also, Jetpack Compose is awesome because it's interoperable with the legacy UI toolkit. So you could have a single screen or whatever in Jetpack Compose and the rest of your app still be the legacy components without any issues (assuming your project is mostly up to date with other jetpack dependencies). At my company we have been using Jetpack Compose in production for 6 months without any issues and we love it. 100% of our new features are written in Compose and we're working on converting older projects over as we go.
@atchayvarma40103 жыл бұрын
@@nathankrebs8391 thanks dude..
@_AverageGuy3 жыл бұрын
@@nathankrebs8391 Hey is your company by any chance looking for android developer intern?
@felixdeperfect77072 жыл бұрын
please how do i get the design ic visibility image, i need the source code of this video
@akshajjoshy897111 ай бұрын
did u get it ??
@riyabaranwal62677 ай бұрын
did you got it
@lojanan277527 күн бұрын
Import the following dependency into your build.gradle file: implementation("androidx.compose.material:material-icons-extended:1.7.6") Then, inside your trailingIcon parameter's Icon composable you can use Icons.Filled.Visibility: trailingIcon = { IconButton(onClick = { /*TODO*/ }) { Icon( imageVector = Icons.Filled.Visibility, contentDescription = "Visibility" ) } }
@aminelhag2 жыл бұрын
Thank to You Stevdza-san ( ノ ゚ー゚)ノ Keep Going
@Z0z0tv093 жыл бұрын
When will you come on camera? 😬
@StevdzaSan3 жыл бұрын
Still need some time to set up the equipment. I'll announce it as soon as I get everything ready. 👍
@OmarAhmed-xg9ez2 жыл бұрын
How to make some delay in visual transformation, so that user can see what he writes for a while then disappear
@pltsm39703 жыл бұрын
I have two EditText that the value is time First EditText val = 20:00 Second EditText val = 22:30 Action : 20:00 - 22:30 = 2:30 I want to show Result in decimalnumber TextviewResult = 2.5
@lanasillomaster70343 жыл бұрын
Well, you are showing your result in decimal format. Do you instead mean to show it in hexagesimal format (hour format)?