mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-25 11:22:23 +00:00
More improvements
This commit is contained in:
parent
a736516e7b
commit
cfd1119864
1 changed files with 2 additions and 2 deletions
|
@ -164,7 +164,7 @@ class _LogsFiltersModalWidgetState extends State<LogsFiltersModalWidget> {
|
|||
return Padding(
|
||||
padding: MediaQuery.of(context).viewInsets,
|
||||
child: Container(
|
||||
height: 455,
|
||||
height: Platform.isIOS ? 446 : 430,
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).dialogBackgroundColor,
|
||||
borderRadius: const BorderRadius.only(
|
||||
|
@ -176,7 +176,7 @@ class _LogsFiltersModalWidgetState extends State<LogsFiltersModalWidget> {
|
|||
children: [
|
||||
Expanded(
|
||||
child: ListView(
|
||||
physics: 400 < MediaQuery.of(context).size.height
|
||||
physics: (Platform.isIOS ? 416 : 400) < MediaQuery.of(context).size.height
|
||||
? const NeverScrollableScrollPhysics()
|
||||
: null,
|
||||
children: [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue