Page 56 - MDP2022-3
P. 56

child:  DefaultTabController(
                                                                         length:  2,
                                                                         initialIndex:  0,
                                                                         child:  Column(
                                                                             children:  [
                                                                                 TabBar(
                                                                                     isScrollable:  true,
                                                                                     labelColor:  Color(0xFFD2393C),
                                                                                     unselectedLabelColor:
                                                                                             FlutterFlowTheme.of(context).grayLight,
                                                                                     labelPadding:
                                                                                             EdgeInsetsDirectional.fromSTEB(
                                                                                                     24,  0,  24,  0),
                                                                                     labelStyle:  FlutterFlowTheme.of(context)
                                                                                             .subtitle2
                                                                                             .override(
                                                                                                 fontFamily:  'noto',
                                                                                                 fontWeight:  FontWeight.bold,
                                                                                                 useGoogleFonts:  false,
                                                                                             ),
                                                                                     indicatorColor:  Color(0xFFD28439),
                                                                                     indicatorWeight:  3,
                                                                                     tabs:  [
                                                                                         Tab(
                                                                                             text:  '로그인',
                                                                                         ),
                                                                                         Tab(
                                                                                             text:  '회원가입',
                                                                                         ),
                                                                                     ],
                                                                                 ),
                                                                                 Expanded(
                                                                                     child:  TabBarView(
                                                                                         children:  [
                                                                                             Padding(
                                                                                                 padding:
                                                                                                         EdgeInsetsDirectional.fromSTEB(
                                                                                                                 24,  0,  24,  0),
                                                                                                 child:  SingleChildScrollView(
                                                                                                     child:  Column(
                                                                                                         mainAxisSize:  MainAxisSize.max,
                                                                                                         children:  [
                                                                                                             Padding(
                                                                                                                 padding:  EdgeInsetsDirectional
   51   52   53   54   55   56   57   58   59   60   61