14 lines
276 B
Dart
14 lines
276 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class DisplayPage extends StatelessWidget {
|
||
|
const DisplayPage({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Scaffold(
|
||
|
body: Center(
|
||
|
child: Text('展示页面'),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|