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