-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from lamarios/feature/data-source-notifications
add background service
- Loading branch information
Showing
191 changed files
with
6,082 additions
and
2,404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions
6
android/app/src/main/res/mipmap-anydpi-v26/ic_bg_service_small.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<foreground android:drawable="@mipmap/ic_launcher_foreground" /> | ||
|
||
<monochrome android:drawable="@mipmap/ic_launcher_monochrome_foreground" /> | ||
</adaptive-icon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Add foreground service to get notified on new content (subscriptions / channel / playlists) | ||
Fix search | ||
Split settings in multiple settings sub pages as it was getting too big |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import 'package:auto_route/auto_route.dart'; | ||
import 'package:flutter/cupertino.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:invidious/player/views/components/player.dart'; | ||
|
||
import '../../../player/views/components/mini_player_aware.dart'; | ||
|
||
@RoutePage() | ||
class MainScreen extends StatelessWidget { | ||
const MainScreen({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const Stack( | ||
children: [ | ||
MiniPlayerAware( | ||
child: AutoRouter(), | ||
), | ||
Player() | ||
], | ||
); | ||
} | ||
} |
Oops, something went wrong.