28 lines
664 B
Dart
28 lines
664 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../components/appbar.dart';
|
|
|
|
class ShowPage extends StatefulWidget {
|
|
const ShowPage({super.key});
|
|
|
|
@override
|
|
State<ShowPage> createState() => _ShowPageState();
|
|
}
|
|
|
|
class _ShowPageState extends State<ShowPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
resizeToAvoidBottomInset: false,
|
|
appBar: const CustomAppBar(title: '展示中心'),
|
|
body: Container(
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('images/pwd_bg.png'),
|
|
fit: BoxFit.fill,
|
|
),
|
|
)
|
|
),
|
|
);
|
|
}
|
|
} |