I want to show an `AlertDialog` on a specific acti...
# compose
a
I want to show an
AlertDialog
on a specific action and I'm thinking in tow ways: 1- Pass the action to the root Composable fun then show the dialog. 2- Show the dialog from the Composable that manage the action and then pass the result to the root Composable? I tend to the first option since it's more manageable, what do you think?