mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00

Login page tuned Replace loading texts with Circular progress bar Sidebar icons are rounded now New Icon & banner
14 lines
400 B
Dart
14 lines
400 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SideBarTiles {
|
|
final IconData icon;
|
|
final String title;
|
|
SideBarTiles({required this.icon, required this.title});
|
|
}
|
|
|
|
List<SideBarTiles> sidebarTileList = [
|
|
SideBarTiles(icon: Icons.home_rounded, title: "Browse"),
|
|
SideBarTiles(icon: Icons.search_rounded, title: "Search"),
|
|
SideBarTiles(icon: Icons.library_books_rounded, title: "Library"),
|
|
];
|