mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
chore: syntax errors
This commit is contained in:
parent
0d6d482630
commit
db22b4fcce
@ -26,7 +26,7 @@ class Sidebar extends HookConsumerWidget {
|
||||
color: Colors.black,
|
||||
borderRadius: BorderRadius.circular(50),
|
||||
),
|
||||
child: Assets.branding.spotubeLogo.image(
|
||||
child: Assets.branding.spotubeLogoPng.image(
|
||||
height: 50,
|
||||
cacheHeight: (100 * MediaQuery.devicePixelRatioOf(context)).toInt(),
|
||||
),
|
||||
|
@ -17,7 +17,7 @@ class GettingStartedPageGreetingSection extends HookConsumerWidget {
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Assets.branding.spotubeLogo.image(height: 200),
|
||||
Assets.branding.spotubeLogoPng.image(height: 200),
|
||||
const Gap(24),
|
||||
const Text("Spotube").semiBold().h4(),
|
||||
const Gap(4),
|
||||
|
@ -45,7 +45,7 @@ class HomePage extends HookConsumerWidget {
|
||||
floating: true,
|
||||
title: Image.asset(
|
||||
theme.brightness == Brightness.dark
|
||||
? Assets.branding.spotubeLogo.path
|
||||
? Assets.branding.spotubeLogoPng.path
|
||||
: Assets.branding.spotubeLogoLight.path,
|
||||
height: 45,
|
||||
width: 45,
|
||||
|
@ -45,7 +45,7 @@ class AboutSpotubePage extends HookConsumerWidget {
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Assets.branding.spotubeLogo.image(
|
||||
Assets.branding.spotubeLogoPng.image(
|
||||
height: 200,
|
||||
width: 200,
|
||||
),
|
||||
|
@ -348,7 +348,7 @@ class MetadataPluginNotifier extends AsyncNotifier<MetadataPluginState> {
|
||||
entryPoint: plugin.entryPoint,
|
||||
apis: plugin.apis.map((e) => e.name).toList(),
|
||||
abilities: plugin.abilities.map((e) => e.name).toList(),
|
||||
pluginApiVersion: plugin.pluginApiVersion,
|
||||
pluginApiVersion: Value(plugin.pluginApiVersion),
|
||||
repository: Value(plugin.repository),
|
||||
),
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user