基础页面
This commit is contained in:
15
lib/views/contact/group/create/index_page.dart
Normal file
15
lib/views/contact/group/create/index_page.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ContactGroupCreatePage extends StatefulWidget {
|
||||
const ContactGroupCreatePage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
_ContactGroupCreatePageState createState() => _ContactGroupCreatePageState();
|
||||
}
|
||||
|
||||
class _ContactGroupCreatePageState extends State<ContactGroupCreatePage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
15
lib/views/contact/group/manage/index_page.dart
Normal file
15
lib/views/contact/group/manage/index_page.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ContactGroupManagePage extends StatefulWidget {
|
||||
const ContactGroupManagePage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<ContactGroupManagePage> createState() => _ContactGroupManagePageState();
|
||||
}
|
||||
|
||||
class _ContactGroupManagePageState extends State<ContactGroupManagePage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
17
lib/views/contact/group/notification/index_page.dart
Normal file
17
lib/views/contact/group/notification/index_page.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user