mirror of
				https://gitlab.com/veilid/veilidchat.git
				synced 2025-10-30 21:58:52 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			657 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			657 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/material.dart';
 | |
| import 'package:flutter_riverpod/flutter_riverpod.dart';
 | |
| 
 | |
| class ContactsPage extends ConsumerStatefulWidget {
 | |
|   const ContactsPage({super.key});
 | |
| 
 | |
|   @override
 | |
|   ContactsPageState createState() => ContactsPageState();
 | |
| }
 | |
| 
 | |
| class ContactsPageState extends ConsumerState<ContactsPage> {
 | |
|   final _unfocusNode = FocusNode();
 | |
| 
 | |
|   @override
 | |
|   void initState() {
 | |
|     super.initState();
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void dispose() {
 | |
|     _unfocusNode.dispose();
 | |
|     super.dispose();
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   // ignore: prefer_expression_function_bodies
 | |
|   Widget build(BuildContext context) {
 | |
|     return Center(child: Text("Contacts Page"));
 | |
|   }
 | |
| }
 | 
