Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }