I want to create a custom AlertDialog making use of Jetpack Compose. I need to put a colored bar for the title as well as different components such as text, radiobuttons ... The end goal is something like this:
In XML layout I know it could be done, but is it possible in Jetpack Compose?
CodePudding user response:
Use Dialog instead of AlertDialog.
Inside Dialog you can put any composables you want.
Here is a nice sample: