Compare commits

..

1 Commits

Author SHA1 Message Date
Guanciottaman
693b026bb0
Merge ff252d6b14 into 4db9a95a91 2025-03-07 20:26:50 +06:00
6 changed files with 13 additions and 18 deletions

View File

@ -1,3 +1,3 @@
{
"flutterSdkVersion": "3.29.1"
"flutterSdkVersion": "3.29.0"
}

2
.fvmrc
View File

@ -1,4 +1,4 @@
{
"flutter": "3.29.1",
"flutter": "3.29.0",
"flavors": {}
}

View File

@ -28,5 +28,5 @@
"README.md": "LICENSE,CODE_OF_CONDUCT.md,CONTRIBUTING.md,SECURITY.md,CONTRIBUTION.md,CHANGELOG.md,PRIVACY_POLICY.md",
"*.dart": "${capture}.g.dart,${capture}.freezed.dart"
},
"dart.flutterSdkPath": ".fvm/versions/3.29.1"
"dart.flutterSdkPath": ".fvm/versions/3.29.0"
}

View File

@ -25,9 +25,9 @@
android:requestLegacyExternalStorage="true"
android:usesCleartextTraffic="true">
<!-- Enable Impeller -->
<meta-data
<!-- <meta-data
android:name="io.flutter.embedding.android.EnableImpeller"
android:value="false" />
android:value="false" /> -->
<activity
android:name="com.ryanheise.audioservice.AudioServiceActivity"

View File

@ -48,7 +48,7 @@ class PlayerView extends HookConsumerWidget {
ref.watch(audioPlayerProvider.select((s) => s.activeTrack));
final currentTrack = sourcedCurrentTrack ?? currentActiveTrack;
final isLocalTrack = currentTrack is LocalTrack;
final mediaQuery = MediaQuery.sizeOf(context);
final mediaQuery = MediaQuery.of(context);
final shouldHide = useState(true);
@ -101,8 +101,6 @@ class PlayerView extends HookConsumerWidget {
backgroundColor: Colors.transparent,
headers: [
SafeArea(
minimum: const EdgeInsets.only(top: 80),
bottom: false,
child: TitleBar(
surfaceOpacity: 0,
surfaceBlur: 0,

View File

@ -43,16 +43,13 @@ class RootAppPage extends HookConsumerWidget {
final scaffold = MediaQuery.removeViewInsets(
context: context,
removeBottom: true,
child: const SafeArea(
top: false,
child: Scaffold(
footers: [
BottomPlayer(),
SpotubeNavigationBar(),
],
floatingFooter: true,
child: Sidebar(child: AutoRouter()),
),
child: const Scaffold(
footers: [
BottomPlayer(),
SpotubeNavigationBar(),
],
floatingFooter: true,
child: Sidebar(child: AutoRouter()),
),
);