mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
17 lines
361 B
Dart
17 lines
361 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ColoredTabBar extends ColoredBox implements PreferredSizeWidget {
|
|
@override
|
|
// ignore: overridden_fields
|
|
final TabBar child;
|
|
|
|
const ColoredTabBar({
|
|
required super.color,
|
|
required this.child,
|
|
super.key,
|
|
}) : super(child: child);
|
|
|
|
@override
|
|
Size get preferredSize => child.preferredSize;
|
|
}
|