16 lines
344 B
Dart
16 lines
344 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class KtExplorePage extends StatefulWidget {
|
|
const KtExplorePage({super.key});
|
|
|
|
@override
|
|
State<KtExplorePage> createState() => _KtExplorePageState();
|
|
}
|
|
|
|
class _KtExplorePageState extends State<KtExplorePage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold();
|
|
}
|
|
}
|