Frontend first draft
This commit is contained in:
13
frontend/pweb/lib/widgets/appbar/notifications.dart
Normal file
13
frontend/pweb/lib/widgets/appbar/notifications.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user