Nice, Could you make a tutorial about implementation of admob ads ( banner, interstitial and native ) in jetpack compose cuz its still rare in YT 😊 thanks
what if i use this searchBar above a list of items and I don't want it to hide my list or to show me the searchbar menu with history searches? i want the bar to stay as it is and simply filter my list when I press the search button, how do I prevent it from changing it's presentation once I click on it to type something?
I'm working on your course todoapp , and I tried to work with this searchBar or DockedSearchBar but I had a problem which is that I get a view with suggestions I tried to disable it but I couldn't , do you know how to do it ?
My best workaround so far is adding this modifier to Searchbar: Modifier .padding(if (isActive) 0.dp else 16.dp) .animateContentSize() edit: This method is not efficient in terms of performance . Use this instead: val searchBarPadding by animateDpAsState(targetValue = if (isActive) 0.dp else 16.dp) SearchBar( modifier = Modifier .padding(searchBarPadding) . . .
Please make video on Oauth2 Authentication with Webview using Jetpack compose How the CallBackUrl retrieved from the api and retrieve access token to make api calls.
Hey, I have a question about the SearchBar function. Did you code your own or can we inherit it from somewhere? If it is your function, where could I get the entire code? Thank you in advance
Can you make a video how to open a dialog when fcm notification received in app whether app is closed or open. Any one interested in this topic leave a like
Wow, great stuff, I like how the SearchBar Compoent expands and shrinks, super good stuff.
Thanks!
Thanks Andrew!
Great tutorial, thanks for sharing Stevdza-san!
You're welcome 😊
best channel for learning Jetpack Compose!
Clear and concise. Thanks a lot! 🤓
Thanks for what you do!
Can you share how you did the auto fill of parameters in 1:08, please?
Nice, Could you make a tutorial about implementation of admob ads ( banner, interstitial and native ) in jetpack compose cuz its still rare in YT 😊 thanks
It's awesome idea!
Nice❤
what if i use this searchBar above a list of items and I don't want it to hide my list or to show me the searchbar menu with history searches? i want the bar to stay as it is and simply filter my list when I press the search button, how do I prevent it from changing it's presentation once I click on it to type something?
I'm working on your course todoapp , and I tried to work with this searchBar or DockedSearchBar but I had a problem which is that I get a view with suggestions I tried to disable it but I couldn't , do you know how to do it ?
How can I add padding to the Search bar without changing the padding when it expands?
My best workaround so far is adding this modifier to Searchbar:
Modifier
.padding(if (isActive) 0.dp else 16.dp)
.animateContentSize()
edit: This method is not efficient in terms of performance . Use this instead:
val searchBarPadding by animateDpAsState(targetValue = if (isActive) 0.dp else 16.dp)
SearchBar(
modifier = Modifier
.padding(searchBarPadding)
.
.
.
Hello, great tutorial.Thanks
make a video about search in lazycolumn list, using searchview
It's not that different. You just need to connect the dots. 👌
ok i will try
Where is the this video project source code link?
@Sj I didn't include it since it's quite simple.
@@StevdzaSan ok
Please make video on Oauth2 Authentication with Webview using Jetpack compose
How the CallBackUrl retrieved from the api and retrieve access token to make api calls.
hello, how can I add some spacing vertically and horizontally?
Just use modifier
Hi, can I ask. How can I use this SearchBar on bottom of screen? my problem is when the searchbar on focus, it goes up out of screen.
How to place SearchBar with Title in Scaffold ? Can you provide an example for that ?
thank you sir
Amazing tutorial, @stevdza-san. Very objective.
Hey, I have a question about the SearchBar function. Did you code your own or can we inherit it from somewhere? If it is your function, where could I get the entire code? Thank you in advance
That's a composable function that comes with the compose material dependency.
@@StevdzaSan Do you mind sharing which dependencies you added for this code?
@@ww6670 material3 compose
@@StevdzaSan SearchBar compose is not available currently
@@vickramodero6971 added after 1.2.0-alpha01
Nice job
How to save history of search in database in app ??
Use ROOM database.
Thanks
Hi, how can I modify the text style of the input user types in search bar?
good job
Can you please provide a list of your dependecies? I can't seem to find the correct material3 one for SearchBar
Every default compose material 3 project template in Android Studio has it.
@@StevdzaSan mine doesn’t. I am using Flamingo
@@ghrafkly Try using the latest Compose BOM version: developer.android.com/jetpack/compose/bom/bom-mapping
@@StevdzaSan Looked like I had to update my Kotlin in build.gradle to 1.8.10. Still have an error on app load, but the app seems to be usable atm
implementation platform('androidx.compose:compose-bom:2023.05.01') change into to this one
How to connect Search Bar ?
I prefer adding an IconButton instead of a simple Icon with an onclick modifier .
True.
Hello! Where can you get the source?
🤩🤩
Pls give this tutorial in javaaa .
Can you make a video how to open a dialog when fcm notification received in app whether app is closed or open. Any one interested in this topic leave a like
first like🎉