Page 63 - MDP2022-3
P. 63

.secondaryBackground,
                                                                                                                         textStyle:
                                                                                                                                 FlutterFlowTheme.of(
                                                                                                                                                 context)
                                                                                                                                         .subtitle2
                                                                                                                                         .override(
                                                                                                                                             fontFamily:
                                                                                                                                                     'noto',
                                                                                                                                             color:  FlutterFlowTheme.of(
                                                                                                                                                             context)
                                                                                                                                                     .primaryText,
                                                                                                                                             useGoogleFonts:
                                                                                                                                                     false,
                                                                                                                                         ),
                                                                                                                         elevation:  0,
                                                                                                                         borderSide:  BorderSide(
                                                                                                                             color:
                                                                                                                                     Colors.transparent,
                                                                                                                             width:  1,
                                                                                                                         ),
                                                                                                                         borderRadius:
                                                                                                                                 BorderRadius.circular(
                                                                                                                                         8),
                                                                                                                     ),
                                                                                                                 ),
                                                                                                             ),
                                                                                                             Padding(
                                                                                                                 padding:  EdgeInsetsDirectional
                                                                                                                         .fromSTEB(0,  20,  0,  24),
                                                                                                                 child:  FFButtonWidget(
                                                                                                                     onPressed:  ()  async  {
                                                                                                                         final  user  =
                                                                                                                                 await  signInAnonymously(
                                                                                                                                         context);
                                                                                                                         if  (user  ==  null)  {
                                                                                                                             return;
                                                                                                                         }
                                                                                                                         await  Navigator.push(
                                                                                                                             context,
                                                                                                                             MaterialPageRoute(
                                                                                                                                 builder:  (context)  =>
                                                                                                                                         CompleteProfileWidget(),
                                                                                                                             ),
                                                                                                                         );
   58   59   60   61   62   63   64   65   66   67   68