mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-21 13:01:00 -05:00
31 lines
657 B
Dart
31 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"));
|
|
}
|
|
}
|