16 lines
373 B
Dart
16 lines
373 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ContactGroupPage extends StatefulWidget {
|
|
const ContactGroupPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ContactGroupPageState createState() => _ContactGroupPageState();
|
|
}
|
|
|
|
class _ContactGroupPageState extends State<ContactGroupPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|