Back to App Screens
Error 404 Screen
Premium Component

Error 404 Screen

Beautifully crafted, token-driven Flutter code ready to be dropped straight into your application. Fully responsive, accessible, and easily customizable utilizing material guidelines.

main.dart
import 'package:flutter/material.dart';

class Error404ScreenScreen extends StatelessWidget {
  const Error404ScreenScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.white,
      appBar: AppBar(
        title: Text('Error 404 Screen'),
        elevation: 0,
        backgroundColor: Colors.white,
        foregroundColor: Colors.black,
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Icon(Icons.dashboard_customize, size: 60, color: Colors.indigo),
            SizedBox(height: 20),
            Text(
              'Welcome to Error 404 Screen!',
              style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
            ),
          ],
        ),
      ),
    );
  }
}