not_found_page.dart
464 Bytes
import 'package:flutter/material.dart';
import 'package:Parlando/widgets/my_app_bar.dart';
import 'package:Parlando/widgets/state_layout.dart';
class NotFoundPage extends StatelessWidget {
const NotFoundPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
appBar: MyAppBar(),
body: StateLayout(
type: StateType.account,
hintText: '页面不存在',
),
);
}
}