11 lines
230 B
Dart
11 lines
230 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class EntryPage extends StatelessWidget {
|
||
|
const EntryPage({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Center(child: Text('出入頁內容'));
|
||
|
}
|
||
|
}
|