Skip to content

Commit

Permalink
updated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhkatkar committed May 31, 2021
1 parent aaa2fa4 commit 13d9d9f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
- uses: subosito/flutter-action@v1
with:
flutter-version: "2.0.4"
- name: Decode google-services.json
env:
FIREBASE_SECRET: ${{ secrets.FIREBASE_SECRET }}
run: echo $FIREBASE_SECRET > android/app/google-services.json
- run: flutter pub get
- run: flutter build apk --split-per-abi
- name: Create a Release APK
Expand Down
20 changes: 10 additions & 10 deletions lib/UI/Player/Widgets/SongName.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ class SongName extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Column(
children: [
Text(
name,
style: Theme.of(context)
.textTheme
.headline4
.copyWith(color: Colors.white),
),
],
Container(
width: MediaQuery.of(context).size.width * 0.7,
child: Text(
name,
style: Theme.of(context)
.textTheme
.headline4
.copyWith(color: Colors.white),
overflow: TextOverflow.ellipsis,
),
),
RadiantGradientMask(
child: Icon(
Expand Down

0 comments on commit 13d9d9f

Please sign in to comment.