register - Linked the register's page body to the register_form
This commit is contained in:
parent
80c8f9bf9a
commit
b3759256d5
1 changed files with 10 additions and 8 deletions
|
@ -1,4 +1,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:nekoya_flutter/components/register_form.dart';
|
||||
import 'package:nekoya_flutter/components/register_verify.dart';
|
||||
import 'package:nekoya_flutter/components/register_error.dart';
|
||||
|
||||
class Register extends StatefulWidget {
|
||||
Register({Key? key}) : super(key: key);
|
||||
|
@ -11,13 +14,12 @@ class _RegisterState extends State<Register> {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: const Color(0xff1b1c1e),
|
||||
appBar: AppBar(
|
||||
title: const Text('Register'),
|
||||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: Text('Register'),
|
||||
);
|
||||
backgroundColor: const Color(0xff1b1c1e),
|
||||
appBar: AppBar(
|
||||
title: const Text('Register'),
|
||||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: Register_Form());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue