Skip to content

Commit bb04995

Browse files
Padding Size made Dynamic using MediaQuery
1 parent 0263f79 commit bb04995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/buildTasks.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class _TasksBuilderState extends State<TasksBuilder> {
175175
)
176176
: ListView(
177177
controller: scrollController,
178-
padding: const EdgeInsets.only(top: 4, left: 2, right: 2, bottom: 80),
178+
padding: EdgeInsets.only(top: 4, left: 2, right: 2, bottom: MediaQuery.of(context).size.height * 0.1),
179179
children: [
180180
for (var task in widget.taskData)
181181
widget.pendingFilter

0 commit comments

Comments
 (0)