Answers for "flutter corner dialog"

1

round corner of alertdialog flutter

AlertDialog(
	shape: RoundedRectangleBorder(
		borderRadius: BorderRadius.circular(30),
	),
	...
);
Posted by: Guest on June-25-2021

Browse Popular Code Answers by Language