mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 12:57:24 +00:00
13 lines
238 B
Dart
13 lines
238 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
class ExplorePage extends StatelessWidget {
|
|
const ExplorePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text("Explore"),
|
|
);
|
|
}
|
|
}
|