Files
UUVPN/flutter/lib/pages/404/not_find_page.dart
T
2023-06-25 11:50:55 +08:00

27 lines
677 B
Dart

import 'package:flutter/material.dart';
import 'package:sail/constant/app_images.dart';
import 'package:sail/constant/app_strings.dart';
class NotFindPage extends StatelessWidget {
const NotFindPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: const Text(AppStrings.appName),
),
body: Container(
alignment: Alignment.center,
child: Image.asset(
AppImages.notFoundPicture,
width: 200,
height: 100,
color: const Color(0xFFff5722),
),
));
}
}