19 lines
440 B
Dart
19 lines
440 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class NotificationsScreen extends StatelessWidget {
|
|
const NotificationsScreen({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Notifications'),
|
|
backgroundColor: Colors.blueAccent,
|
|
),
|
|
body: const Center(
|
|
child: Text('Liste des notifications'),
|
|
),
|
|
);
|
|
}
|
|
}
|