not_found_page.dart 512 Bytes
import 'package:flutter/material.dart';
import 'package:one_poem/widgets/my_app_bar.dart';
import 'package:one_poem/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(
        centerTitle: '页面不存在',
      ),
      body: StateLayout(
        type: StateType.account,
        hintText: '页面不存在',
      ),
    );
  }
}