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

fix(theme): remove splash effect feat(artists-albums): horizontal paginated list instead of grid view page
15 lines
318 B
Dart
15 lines
318 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ColoredTabBar extends ColoredBox implements PreferredSizeWidget {
|
|
final TabBar child;
|
|
|
|
const ColoredTabBar({
|
|
required super.color,
|
|
required this.child,
|
|
super.key,
|
|
}) : super(child: child);
|
|
|
|
@override
|
|
Size get preferredSize => child.preferredSize;
|
|
}
|