fixed favorite icon, icon style + top padding

This commit is contained in:
ashilkn 2022-06-09 18:04:47 +05:30
parent 5160119947
commit aa58785080

View file

@ -69,10 +69,6 @@ class FadingAppBarState extends State<FadingAppBar> {
),
),
child: _buildAppBar(),
// child: _buildAppBar()Padding(_buildAppBar()
// padding: const EdgeInsets.only(top: 0),
// child: SafeArea(child: _buildAppBar()),
// ),
),
opacity: _shouldHide ? 0 : 1,
duration: Duration(milliseconds: 150),
@ -241,15 +237,11 @@ class FadingAppBarState extends State<FadingAppBar> {
return hasError ? oldValue : isLiked;
},
likeBuilder: (isLiked) {
return Padding(
padding: const EdgeInsets.only(top: 8.0),
child: Icon(
Icons.favorite_border,
color: isLiked
? Colors.pinkAccent
: Colors.white, //same for both themes
size: 24,
),
return Icon(
isLiked ? Icons.favorite_rounded : Icons.favorite_border,
color:
isLiked ? Colors.pinkAccent : Colors.white, //same for both themes
size: 24,
);
},
);