mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
33 lines
915 B
Dart
33 lines
915 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
class NewAccountPage extends ConsumerWidget {
|
|
const NewAccountPage({super.key});
|
|
static const path = '/new_account';
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return Scaffold(
|
|
appBar: null,
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
const Text("New Account Page"),
|
|
// ElevatedButton(
|
|
// onPressed: () async {
|
|
// ref.watch(authNotifierProvider.notifier).login(
|
|
// "myEmail",
|
|
// "myPassword",
|
|
// );
|
|
// },
|
|
// child: const Text("Login"),
|
|
// ),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|