feat: register page
This commit is contained in:
@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
|
||||
|
||||
import '../../../../common/theme/theme.dart';
|
||||
import '../../../components/button/button.dart';
|
||||
import '../../../router/app_router.gr.dart';
|
||||
import 'widgets/phone_field.dart';
|
||||
|
||||
@RoutePage()
|
||||
@@ -12,7 +13,6 @@ class LoginPage extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: AppColor.backgroundLight,
|
||||
appBar: AppBar(title: const Text('Masuk')),
|
||||
body: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 24.0),
|
||||
@@ -27,7 +27,12 @@ class LoginPage extends StatelessWidget {
|
||||
const SizedBox(height: 50),
|
||||
|
||||
// Continue Button
|
||||
AppElevatedButton(onPressed: null, title: 'Lanjutkan'),
|
||||
AppElevatedButton(
|
||||
onPressed: () {
|
||||
context.router.push(RegisterRoute());
|
||||
},
|
||||
title: 'Lanjutkan',
|
||||
),
|
||||
|
||||
const SizedBox(height: 24),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user