mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
6 lines
135 B
Dart
6 lines
135 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SpotubePage<T> extends MaterialPage<T> {
|
|
const SpotubePage({required super.child});
|
|
}
|