Compare commits

..

2 Commits

Author SHA1 Message Date
Guanciottaman
75949b1343
Merge ff252d6b14 into e575d23c4a 2025-04-28 08:24:11 +06:00
Kingkor Roy Tirtho
e575d23c4a chore: add cookie font for logo 2025-04-28 00:01:55 +06:00
3 changed files with 15 additions and 1 deletions

Binary file not shown.

View File

@ -65,7 +65,16 @@ class Sidebar extends HookConsumerWidget {
final navigationButtons = [ final navigationButtons = [
NavigationLabel( NavigationLabel(
child: mediaQuery.lgAndUp ? const Text("Spotube") : const Text(""), child: mediaQuery.lgAndUp
? const DefaultTextStyle(
style: TextStyle(
fontFamily: "Cookie",
fontSize: 30,
letterSpacing: 1.8,
),
child: Text("Spotube"),
)
: const Text(""),
), ),
for (final tile in sidebarTileList) for (final tile in sidebarTileList)
NavigationButton( NavigationButton(

View File

@ -200,6 +200,11 @@ flutter:
- family: BootstrapIcons - family: BootstrapIcons
fonts: fonts:
- asset: packages/shadcn_flutter/icons/BootstrapIcons.otf - asset: packages/shadcn_flutter/icons/BootstrapIcons.otf
- family: Cookie
fonts:
- asset: assets/fonts/Cookie-Regular.ttf
style: normal
weight: 500
flutter_gen: flutter_gen:
output: lib/collections output: lib/collections