feat(media): add Note/Picture post type selector; fix gallery crash

- Post type toggle (Note vs Picture/kind 20) in compose dialog, only
  shown when image files are attached. Text input disabled in picture mode.
- Fix LazyVerticalGrid crash in GalleryTab: bounded height via
  fillParentMaxHeight() when nested inside LazyColumn.
- Phase 1 testing plan: all pass.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
nrobi144
2026-03-18 14:42:44 +02:00
parent cf17dea53f
commit c90bf8f610
2 changed files with 619 additions and 137 deletions
@@ -730,6 +730,7 @@ fun UserProfileScreen(
GalleryTab(
pictureEvents = pictureEvents,
onImageClick = { urls, index -> lightboxState = LightboxState(urls, index) },
modifier = Modifier.fillParentMaxHeight(),
)
}
}