13 lines
272 B
Dart
13 lines
272 B
Dart
import 'package:auto_route/annotations.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
@RoutePage()
|
|
class ExploreScreen extends StatelessWidget {
|
|
const ExploreScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Placeholder();
|
|
}
|
|
}
|