veilidchat/lib/layout/edit_contact.dart

31 lines
794 B
Dart
Raw Normal View History

2023-01-09 22:50:34 -05:00
import 'package:flutter/material.dart';
2024-01-09 20:58:27 -05:00
class ContactsPage extends StatelessWidget {
2023-01-09 22:50:34 -05:00
const ContactsPage({super.key});
static const path = '/contacts';
@override
2024-01-09 20:58:27 -05:00
Widget build(
BuildContext context,
) =>
const Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('Contacts Page'),
// ElevatedButton(
// onPressed: () async {
// ref.watch(authNotifierProvider.notifier).login(
// "myEmail",
// "myPassword",
// );
// },
// child: const Text("Login"),
// ),
],
),
2023-01-09 22:50:34 -05:00
),
2024-01-09 20:58:27 -05:00
);
2023-01-09 22:50:34 -05:00
}