20 lines
418 B
Dart
20 lines
418 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ContactPage extends StatefulWidget {
|
|
const ContactPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ContactPageState createState() => _ContactPageState();
|
|
}
|
|
|
|
class _ContactPageState extends State<ContactPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('通讯录'),
|
|
),
|
|
);
|
|
}
|
|
}
|