Files
sendico/frontend/pweb/lib/widgets/appbar/notifications.dart
2025-11-13 15:06:15 +03:00

14 lines
285 B
Dart

import 'package:flutter/material.dart';
class NotificationsButton extends StatelessWidget {
const NotificationsButton({super.key});
@override
Widget build(BuildContext context) {
return IconButton(
icon: Icon(Icons.notifications),
onPressed: null,
);
}
}