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.
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();
- }
- }
|