Nessuna descrizione
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.

NotificationCenter.dart 419B

123456789101112131415
  1. import 'package:flutter/material.dart';
  2. class NotificationCenter_Screen extends StatefulWidget {
  3. const NotificationCenter_Screen({super.key});
  4. @override
  5. State<NotificationCenter_Screen> createState() => _NotificationCenter_ScreenState();
  6. }
  7. class _NotificationCenter_ScreenState extends State<NotificationCenter_Screen> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return const Placeholder();
  11. }
  12. }