18 lines
378 B
Dart
18 lines
378 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DiscoverPage extends StatefulWidget {
|
|
DiscoverPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<DiscoverPage> createState() => _DiscoverPageState();
|
|
}
|
|
|
|
class _DiscoverPageState extends State<DiscoverPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
child: Text("发现"),
|
|
);
|
|
}
|
|
}
|