Back to App Screens
Empty Notifications
Free Open Source

Empty Notifications

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 EmptyNotificationsScreen extends StatelessWidget {
  const EmptyNotificationsScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.white,
      appBar: AppBar(
        title: Text('Empty Notifications'),
        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 Empty Notifications!',
              style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
            ),
          ],
        ),
      ),
    );
  }
}