mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
11 lines
268 B
Dart
11 lines
268 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AnonymousFallback extends StatelessWidget {
|
|
const AnonymousFallback({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(child: Text("You're not logged in"));
|
|
}
|
|
}
|