veilidchat/lib/components/chat_index.dart

28 lines
773 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';
2023-07-23 23:13:21 -04:00
class ChatIndex extends ConsumerWidget {
const ChatIndex({super.key});
2023-01-09 22:50:34 -05:00
@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"),
// ),
],
),
),
);
}