基础页面

This commit is contained in:
2022-10-20 14:21:39 +08:00
parent 49ad269c2b
commit 42ba10ec61
62 changed files with 5132 additions and 54 deletions

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

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

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