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 { @override Widget build(BuildContext context) { return ScaffoldThemeWidget( title: "从通讯录添加", bottom: "添加", onTap: () { }, child: Container(), ); } }