mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-25 19:29:30 +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(
|
return Padding(
|
||||||
padding: MediaQuery.of(context).viewInsets,
|
padding: MediaQuery.of(context).viewInsets,
|
||||||
child: Container(
|
child: Container(
|
||||||
height: 455,
|
height: Platform.isIOS ? 446 : 430,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Theme.of(context).dialogBackgroundColor,
|
color: Theme.of(context).dialogBackgroundColor,
|
||||||
borderRadius: const BorderRadius.only(
|
borderRadius: const BorderRadius.only(
|
||||||
|
@ -176,7 +176,7 @@ class _LogsFiltersModalWidgetState extends State<LogsFiltersModalWidget> {
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: ListView(
|
child: ListView(
|
||||||
physics: 400 < MediaQuery.of(context).size.height
|
physics: (Platform.isIOS ? 416 : 400) < MediaQuery.of(context).size.height
|
||||||
? const NeverScrollableScrollPhysics()
|
? const NeverScrollableScrollPhysics()
|
||||||
: null,
|
: null,
|
||||||
children: [
|
children: [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue