Initial commit
This commit is contained in:
32
lib/views/explore/explore_view.dart
Normal file
32
lib/views/explore/explore_view.dart
Normal file
@@ -0,0 +1,32 @@
|
||||
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',
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user