import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart'; import 'package:flutter/material.dart'; import 'package:hexcolor/hexcolor.dart'; import '../../widgets/auth/verification_methods.dart'; class VerificationMethodsScreen extends StatefulWidget { const VerificationMethodsScreen({Key key, this.password}) : super(key: key); @override _VerificationMethodsScreenState createState() => _VerificationMethodsScreenState(); final password; } class _VerificationMethodsScreenState extends State { bool _isLoading = false; void changeLoadingState(isLoading) { setState(() { _isLoading = isLoading; }); } @override Widget build(BuildContext context) { return AppScaffold( isLoading: _isLoading, isShowAppBar: false, isHomeIcon: false, backgroundColor: HexColor('#F8F8F8'), body: ListView(children: [ Container( margin: EdgeInsetsDirectional.fromSTEB(30, 0, 30, 0), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( height: 50, ), VerificationMethods( password: widget.password, changeLoadingState: changeLoadingState, ), ], ), ), ])); } }