Fix: Tornando a tela Scrollavel

This commit is contained in:
Lucas 2024-08-26 10:23:30 -03:00
parent 515800ac30
commit 74408e55cd
1 changed files with 132 additions and 126 deletions

View File

@ -26,6 +26,7 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
body: Consumer<ReceptionPageModel>( body: Consumer<ReceptionPageModel>(
builder: (context, ReceptionPageModel model, child) { builder: (context, ReceptionPageModel model, child) {
return SafeArea( return SafeArea(
child: SingleChildScrollView(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
@ -39,7 +40,8 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
enText: enText:
'You are close to using the FRE Access Hub...'), 'You are close to using the FRE Access Hub...'),
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: FlutterFlowTheme.of(context).displayLarge.override( style:
FlutterFlowTheme.of(context).displayLarge.override(
fontFamily: 'Plus Jakarta Sans', fontFamily: 'Plus Jakarta Sans',
color: FlutterFlowTheme.of(context).accent1, color: FlutterFlowTheme.of(context).accent1,
fontSize: 20.0, fontSize: 20.0,
@ -61,7 +63,9 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
enText: enText:
'Send your identifier to your condominium to link your account to our systems.'), 'Send your identifier to your condominium to link your account to our systems.'),
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: FlutterFlowTheme.of(context).displaySmall.override( style: FlutterFlowTheme.of(context)
.displaySmall
.override(
fontFamily: 'Nunito Sans', fontFamily: 'Nunito Sans',
color: FlutterFlowTheme.of(context).primaryText, color: FlutterFlowTheme.of(context).primaryText,
fontSize: 14.0, fontSize: 14.0,
@ -87,8 +91,8 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
.labelSmall .labelSmall
.override( .override(
fontFamily: 'Nunito Sans', fontFamily: 'Nunito Sans',
color: color: FlutterFlowTheme.of(context)
FlutterFlowTheme.of(context).secondaryText, .secondaryText,
fontSize: 10.0, fontSize: 10.0,
letterSpacing: 0.0, letterSpacing: 0.0,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
@ -105,7 +109,8 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
height: 44.0, height: 44.0,
padding: const EdgeInsetsDirectional.fromSTEB( padding: const EdgeInsetsDirectional.fromSTEB(
0.0, 0.0, 0.0, 0.0), 0.0, 0.0, 0.0, 0.0),
iconPadding: const EdgeInsetsDirectional.fromSTEB( iconPadding:
const EdgeInsetsDirectional.fromSTEB(
0.0, 0.0, 0.0, 0.0), 0.0, 0.0, 0.0, 0.0),
color: FlutterFlowTheme.of(context).primary, color: FlutterFlowTheme.of(context).primary,
textStyle: FlutterFlowTheme.of(context) textStyle: FlutterFlowTheme.of(context)
@ -185,6 +190,7 @@ class _ReceptionPageWidgetState extends State<ReceptionPageWidget> {
), ),
], ],
), ),
),
); );
}, },
), ),