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.
21 lines
565 B
21 lines
565 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: "添加",
|
|
child: Container(),
|
|
);
|
|
}
|
|
}
|