fix(app): 일정 상세 화면 하단 소프트키 영역 잘림 수정

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-03-29 14:22:15 +09:00
parent 998125333b
commit 6918a18334

View file

@ -176,8 +176,9 @@ class _ScheduleDetailViewState extends ConsumerState<ScheduleDetailView> {
///
Widget _buildContent(ScheduleDetail schedule) {
final bottomPadding = MediaQuery.of(context).padding.bottom;
return SingleChildScrollView(
padding: const EdgeInsets.all(16),
padding: EdgeInsets.fromLTRB(16, 16, 16, 16 + bottomPadding),
child: _buildCategorySection(schedule),
);
}