Skip to content

Commit

Permalink
[Test] try fix ios top padding of playPage
Browse files Browse the repository at this point in the history
  • Loading branch information
canxin121 committed Jul 29, 2024
1 parent 6d32b88 commit 587e52f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class _MyAppState extends State<MyApp> {
home: _isWidthGreaterThanHeight
? const DesktopHome()
: const MobileHome(),
// home:const MobileHome()
));
},
);
Expand Down
5 changes: 2 additions & 3 deletions lib/mobile/comps/play_display_comp/playing_music_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ class PlayingMusicCardState extends State<PlayingMusicCard> {

@override
Widget build(BuildContext context) {
return SafeArea(
child: GestureDetector(
return GestureDetector(
onTap: widget.onClick,
onLongPress: widget.onPress,
child: SizedBox(
Expand Down Expand Up @@ -103,6 +102,6 @@ class PlayingMusicCardState extends State<PlayingMusicCard> {
),
),
),
));
);
}
}

0 comments on commit 587e52f

Please sign in to comment.