Page 72 - MDP2022-3
P. 72

),
                                                                                                                         ),
                                                                                                                     ),
                                                                                                                     style:  FlutterFlowTheme.of(
                                                                                                                                     context)
                                                                                                                             .bodyText1
                                                                                                                             .override(
                                                                                                                                 fontFamily:  'noto',
                                                                                                                                 useGoogleFonts:  false,
                                                                                                                             ),
                                                                                                                 ),
                                                                                                             ),
                                                                                                             Padding(
                                                                                                                 padding:  EdgeInsetsDirectional
                                                                                                                         .fromSTEB(0,  24,  0,  24),
                                                                                                                 child:  FFButtonWidget(
                                                                                                                     onPressed:  ()  async  {
                                                                                                                         final  user  =
                                                                                                                                 await  createAccountWithEmail(
                                                                                                                             context,
                                                                                                                             emailAddressController!
                                                                                                                                     .text,
                                                                                                                             passwordCreateController!
                                                                                                                                     .text,
                                                                                                                         );
                                                                                                                         if  (user  ==  null)  {
                                                                                                                             return;
                                                                                                                         }


                                                                                                                         await  Navigator.push(
                                                                                                                             context,
                                                                                                                             MaterialPageRoute(
                                                                                                                                 builder:  (context)  =>
                                                                                                                                         CompleteProfileWidget(),
                                                                                                                             ),
                                                                                                                         );
                                                                                                                     },
                                                                                                                     text:  '계정  생성',
                                                                                                                     options:  FFButtonOptions(
                                                                                                                         width:  230,
                                                                                                                         height:  50,
                                                                                                                         color:  Color(0xFFFF5F64),
                                                                                                                         textStyle:
                                                                                                                                 FlutterFlowTheme.of(
   67   68   69   70   71   72   73   74   75   76   77