27 lines
677 B
Dart
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),
|
|
),
|
|
));
|
|
}
|
|
}
|