33 lines
455 B
Dart
33 lines
455 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class ExploreView
|
|
extends
|
|
StatefulWidget {
|
|
const ExploreView({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<
|
|
ExploreView
|
|
>
|
|
createState() => _ExploreViewState();
|
|
}
|
|
|
|
class _ExploreViewState
|
|
extends
|
|
State<
|
|
ExploreView
|
|
> {
|
|
@override
|
|
Widget build(
|
|
BuildContext context,
|
|
) {
|
|
return const Center(
|
|
child: Text(
|
|
'Explore',
|
|
),
|
|
);
|
|
}
|
|
}
|