Skip to content

Commit

Permalink
feat: Improve layout for the Search screen on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Losses committed Nov 27, 2024
1 parent 774dda9 commit cf4d1fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/screens/search/search.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'dart:io';
import 'dart:async';

import 'package:provider/provider.dart';
Expand Down Expand Up @@ -226,8 +227,9 @@ class _SearchPageImplementationState extends State<SearchPageImplementation> {
value: mediumScreenLayoutManager,
child: Column(
children: [
if (Platform.isWindows) SizedBox(height: 20),
Padding(
padding: const EdgeInsets.fromLTRB(32, 18, 64, 20),
padding: const EdgeInsets.fromLTRB(32, 18, 32, 20),
child: autoSuggestBox,
),
Expanded(
Expand Down

0 comments on commit cf4d1fe

Please sign in to comment.