veilidchat/lib/pages/edit_contact.dart

29 lines
814 B
Dart
Raw Normal View History

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