mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
11 lines
218 B
Dart
11 lines
218 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class UserArtists extends StatelessWidget {
|
|
const UserArtists({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|