Skip to content

Commit

Permalink
Search Ui Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaungsatthe1n committed Jan 29, 2022
1 parent 242f0e4 commit 6a5bea6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/widgets/searched_result_anime_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SearchedResultAnimeCard extends StatelessWidget {
child: Hero(
tag: anime.id.toString(),
child: Container(
margin: EdgeInsets.symmetric(horizontal: 10.w),
margin: const EdgeInsets.symmetric(horizontal: 10),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down Expand Up @@ -64,7 +64,7 @@ class SearchedResultAnimeCard extends StatelessWidget {
],
),
Container(
margin: EdgeInsets.symmetric(vertical: 20.h),
margin: const EdgeInsets.only(top: 20),
child: Material(
color: Colors.transparent,
child: Text(
Expand All @@ -75,6 +75,7 @@ class SearchedResultAnimeCard extends StatelessWidget {
),
),
),
const Spacer(),
Container(
width: double.infinity,
padding: const EdgeInsets.symmetric(vertical: 4),
Expand Down

0 comments on commit 6a5bea6

Please sign in to comment.