角を丸めないためにはshapeを指定する。
Button(shape= RoundedCornerShape(5.dp), onClick = onClickCallback) { Text("1") }
指定出来るshapeはShapeにいろいろあるが、RoundedCornerShapeとRectangleShapeを良く使う。
RoundedCornerShape
RectangleShape