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