Skip to content

Commit

Permalink
Fixed lyrics, linear gradients. Publish build under v0.7.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
PetitPrinc3 committed Nov 25, 2024
1 parent 9feb2fb commit 1686d84
Show file tree
Hide file tree
Showing 6 changed files with 325 additions and 150 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ This branch focuses on the development of this app while the ReFreezer_Skin bran
- When the same track is added multiple times to queue, it does not display properly
- If queue is cleared and player bar is dismissed, it will not be brought back up if the user clicks back on the formerly playing track.
- Player bar does not always update its color on track tile tap or various other scenarios.
- Lyrics are not properly supported for free accounts.

### :building_construction: Upcoming features
- Menu add inkwell tiles ontap visual effect
Expand All @@ -91,6 +90,7 @@ This branch focuses on the development of this app while the ReFreezer_Skin bran
- Deezer like favorite screen (Offline : offline playlists and random offline tracks)
- Most deezer pages (artists, playlists, albums)
- Downloads are stored within the app storage (Android/data/package) and can be exported to local storage under settings with full tags
- Fixed lyrics support

### :rocket: ReFreezer Features :
- Restored all features of the old Freezer app, most notably:
Expand Down
48 changes: 33 additions & 15 deletions lib/ui/details_screens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,9 @@ class _AlbumDetailsState extends State<AlbumDetails> {
color: Theme.of(context)
.primaryColor,
border: Border.all(
color: Colors.transparent),
color:
scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(100),
),
Expand Down Expand Up @@ -640,7 +642,9 @@ class _AlbumDetailsState extends State<AlbumDetails> {
scaffoldBackgroundColor
.withOpacity(
.6),
Colors.transparent
scaffoldBackgroundColor
.withOpacity(
0)
],
begin: Alignment
.topCenter,
Expand Down Expand Up @@ -968,7 +972,8 @@ class _AlbumDetailsState extends State<AlbumDetails> {
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
border: Border.all(
color: Colors.transparent),
color: scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(100),
),
Expand Down Expand Up @@ -1315,7 +1320,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
.primaryColor,
border: Border.all(
color:
Colors.transparent),
scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(
100),
Expand Down Expand Up @@ -1452,7 +1458,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
decoration: BoxDecoration(
border: Border.all(
color:
Colors.transparent),
scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(10),
color: Theme.of(context)
Expand Down Expand Up @@ -1676,7 +1683,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
colors: [
scaffoldBackgroundColor
.withOpacity(.6),
Colors.transparent
scaffoldBackgroundColor
.withOpacity(0)
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
Expand All @@ -1693,7 +1701,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
colors: [
scaffoldBackgroundColor
.withOpacity(.6),
Colors.transparent
scaffoldBackgroundColor
.withOpacity(0)
],
begin: Alignment.bottomCenter,
end: Alignment.topCenter,
Expand Down Expand Up @@ -1825,7 +1834,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
color:
Theme.of(context).primaryColor,
border: Border.all(
color: Colors.transparent),
color: scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(100),
),
Expand Down Expand Up @@ -1939,7 +1949,8 @@ class _ArtistDetailsState extends State<ArtistDetails> {
clipBehavior: Clip.hardEdge,
decoration: BoxDecoration(
border: Border.all(
color: Colors.transparent),
color: scaffoldBackgroundColor
.withOpacity(0)),
borderRadius: BorderRadius.circular(10),
color: Theme.of(context).hintColor),
child: InkWell(
Expand Down Expand Up @@ -2649,7 +2660,9 @@ class _PlaylistDetailsState extends State<PlaylistDetails> {
scaffoldBackgroundColor,
border: Border.all(
color:
Colors.transparent),
scaffoldBackgroundColor
.withOpacity(
0)),
borderRadius:
BorderRadius.circular(
5)),
Expand Down Expand Up @@ -2870,7 +2883,8 @@ class _PlaylistDetailsState extends State<PlaylistDetails> {
color: Theme.of(context)
.primaryColor,
border: Border.all(
color: Colors.transparent),
color: scaffoldBackgroundColor
.withOpacity(0)),
borderRadius:
BorderRadius.circular(100),
),
Expand Down Expand Up @@ -3009,7 +3023,8 @@ class _PlaylistDetailsState extends State<PlaylistDetails> {
scaffoldBackgroundColor
.withOpacity(
.6),
Colors.transparent
scaffoldBackgroundColor
.withOpacity(0)
],
begin: Alignment
.topCenter,
Expand All @@ -3035,7 +3050,9 @@ class _PlaylistDetailsState extends State<PlaylistDetails> {
scaffoldBackgroundColor
.withOpacity(
.6),
Colors.transparent
scaffoldBackgroundColor
.withOpacity(
0)
],
begin: Alignment
.bottomCenter,
Expand Down Expand Up @@ -3314,8 +3331,9 @@ class _PlaylistDetailsState extends State<PlaylistDetails> {
margin: EdgeInsets.only(right: 6.0),
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
border:
Border.all(color: Colors.transparent),
border: Border.all(
color: scaffoldBackgroundColor
.withOpacity(0)),
borderRadius: BorderRadius.circular(100),
),
child: IconButton(
Expand Down
Loading

0 comments on commit 1686d84

Please sign in to comment.