first step fom verify account page
parent
6737e457b5
commit
41d9101ca4
@ -0,0 +1,24 @@
|
||||
import 'package:doctor_app_flutter/lookups/auth_lookup.dart';
|
||||
import 'package:doctor_app_flutter/widgets/auth/auth_header.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class VerifyAccountScreen extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// return Container()];
|
||||
return Scaffold(
|
||||
backgroundColor: Colors.white,
|
||||
body: SingleChildScrollView(
|
||||
child: Container(
|
||||
margin: EdgeInsetsDirectional.fromSTEB(30, 0, 0, 0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AuthHeader(loginType.verifyPassword),
|
||||
// ChangePassword(),
|
||||
],
|
||||
),
|
||||
),
|
||||
));
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue