mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-28 00:37:06 -05:00
30 lines
797 B
Dart
30 lines
797 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
class ChatPage extends ConsumerWidget {
|
|
const ChatPage({super.key});
|
|
static const path = '/chat';
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text("Chat")),
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
const Text("Home Page"),
|
|
ElevatedButton(
|
|
onPressed: () {
|
|
ref.watch(authNotifierProvider.notifier).logout();
|
|
},
|
|
child: const Text("Logout"),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|