fix(app): 일정 상세 화면 하단 소프트키 영역 잘림 수정
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
998125333b
commit
6918a18334
1 changed files with 2 additions and 1 deletions
|
|
@ -176,8 +176,9 @@ class _ScheduleDetailViewState extends ConsumerState<ScheduleDetailView> {
|
||||||
|
|
||||||
/// 메인 컨텐츠
|
/// 메인 컨텐츠
|
||||||
Widget _buildContent(ScheduleDetail schedule) {
|
Widget _buildContent(ScheduleDetail schedule) {
|
||||||
|
final bottomPadding = MediaQuery.of(context).padding.bottom;
|
||||||
return SingleChildScrollView(
|
return SingleChildScrollView(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: EdgeInsets.fromLTRB(16, 16, 16, 16 + bottomPadding),
|
||||||
child: _buildCategorySection(schedule),
|
child: _buildCategorySection(schedule),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue