14 lines
285 B
Dart
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,
|
|
);
|
|
}
|
|
}
|