forked from alexvasl/drifter_app
19 lines
473 B
Dart
19 lines
473 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/src/widgets/placeholder.dart';
|
|
|
|
class NotificationsScreen extends StatefulWidget {
|
|
const NotificationsScreen({super.key});
|
|
|
|
@override
|
|
State<NotificationsScreen> createState() => _NotificationsScreenState();
|
|
}
|
|
|
|
class _NotificationsScreenState extends State<NotificationsScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Text('Notifications Page'),
|
|
);
|
|
}
|
|
}
|