Files
zh-chat-flutter/lib/views/contact/group/notification/index_page.dart
2022-10-20 14:21:39 +08:00

18 lines
455 B
Dart

import 'package:flutter/material.dart';
class ContactGroupNotificationPage extends StatefulWidget {
const ContactGroupNotificationPage({Key? key}) : super(key: key);
@override
_ContactGroupNotificationPageState createState() =>
_ContactGroupNotificationPageState();
}
class _ContactGroupNotificationPageState
extends State<ContactGroupNotificationPage> {
@override
Widget build(BuildContext context) {
return Container();
}
}