You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- import 'package:flutter/material.dart';
-
- class NotificationCenter_Screen extends StatefulWidget {
- const NotificationCenter_Screen({super.key});
-
- @override
- State<NotificationCenter_Screen> createState() => _NotificationCenter_ScreenState();
- }
-
- class _NotificationCenter_ScreenState extends State<NotificationCenter_Screen> {
- @override
- Widget build(BuildContext context) {
- return const Placeholder();
- }
- }
|