Page 62 - MDP2022-3
P. 62

.subtitle2
                                                                                                                                         .override(
                                                                                                                                             fontFamily:
                                                                                                                                                     'noto',
                                                                                                                                             color:  FlutterFlowTheme.of(
                                                                                                                                                             context)
                                                                                                                                                     .textColor,
                                                                                                                                             fontWeight:
                                                                                                                                                     FontWeight
                                                                                                                                                             .w600,
                                                                                                                                             useGoogleFonts:
                                                                                                                                                     false,
                                                                                                                                         ),
                                                                                                                         elevation:  3,
                                                                                                                         borderSide:  BorderSide(
                                                                                                                             color:
                                                                                                                                     Colors.transparent,
                                                                                                                             width:  1,
                                                                                                                         ),
                                                                                                                         borderRadius:
                                                                                                                                 BorderRadius.circular(
                                                                                                                                         40),
                                                                                                                     ),
                                                                                                                 ),
                                                                                                             ),
                                                                                                             Padding(
                                                                                                                 padding:  EdgeInsetsDirectional
                                                                                                                         .fromSTEB(0,  20,  0,  24),
                                                                                                                 child:  FFButtonWidget(
                                                                                                                     onPressed:  ()  async  {
                                                                                                                         await  Navigator.push(
                                                                                                                             context,
                                                                                                                             MaterialPageRoute(
                                                                                                                                 builder:  (context)  =>
                                                                                                                                         ForgotPasswordWidget(),
                                                                                                                             ),
                                                                                                                         );
                                                                                                                     },
                                                                                                                     text:  '비밀번호  찾기',
                                                                                                                     options:  FFButtonOptions(
                                                                                                                         width:  185,
                                                                                                                         height:  40,
                                                                                                                         color:  FlutterFlowTheme
                                                                                                                                         .of(context)
   57   58   59   60   61   62   63   64   65   66   67