spotube/lib/components/Library/UserArtists.dart
Kingkor Roy Tirtho 7cbb5a97a8 Folder stucture re-organized by component
UserLibrary tab view added
2022-01-22 10:32:21 +06:00

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();
}
}