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.
project_telephony/lib/ui/exclude/exclude_contacts_page.dart

22 lines
587 B

import 'package:flutter/cupertino.dart';
import 'package:project_telephony/ui/widget/scaffold_theme_widget.dart';
class ExcludeContactsPage extends StatefulWidget {
const ExcludeContactsPage({Key? key}) : super(key: key);
@override
_ExcludeContactsPageState createState() => _ExcludeContactsPageState();
}
class _ExcludeContactsPageState extends State<ExcludeContactsPage> {
@override
Widget build(BuildContext context) {
return ScaffoldThemeWidget(
title: "从通讯录添加",
bottom: "添加",
onTap: () { },
child: Container(),
);
}
}