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.

18 lines
397B

  1. import 'package:flutter/material.dart';
  2. class NotificationScreen extends StatefulWidget {
  3. @override
  4. _NotificationScreenState createState() => _NotificationScreenState();
  5. }
  6. class _NotificationScreenState extends State<NotificationScreen> {
  7. @override
  8. Widget build(BuildContext context) {
  9. return Scaffold(
  10. appBar: AppBar(
  11. title: Text("Thông báo"),
  12. ),
  13. );
  14. }
  15. }