Audit 9a.3: custom sheets → ModalBottomSheet (M3 parity)

CompletionHistorySheet + contractor-picker sheet now use
material3.ModalBottomSheet. Standard Material 3 dim-behind + swipe-down
dismiss + sheet state. Inner content unchanged.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trey T
2026-04-18 17:48:14 -05:00
parent 40d2607da8
commit 95f7318ee6

View File

@@ -53,11 +53,10 @@ fun CompletionHistorySheet(
}
}
val sheetState = rememberModalBottomSheetState()
ModalBottomSheet(
onDismissRequest = onDismiss,
sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = false),
containerColor = MaterialTheme.colorScheme.surface,
dragHandle = { BottomSheetDefaults.DragHandle() }
sheetState = sheetState,
) {
Column(
modifier = Modifier