We can create ColorDrawable and convert it as ImageBitmap.
Image(
modifier = Modifier.matchParentSize(),
bitmap = ColorDrawable(Color.Black.toArgb()).toBitmap(10, 10).asImageBitmap(),
contentScale = ContentScale.FillBounds,
contentDescription = null
)