parent
33e19f8d3d
commit
30755b1742
@ -0,0 +1,20 @@
|
||||
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(),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue