This commit is contained in:
jantunesmesias 2024-08-27 13:52:47 -03:00
parent e93fcef350
commit c0b93d12bd
1 changed files with 48 additions and 45 deletions

View File

@ -144,6 +144,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
decoration: const BoxDecoration( decoration: const BoxDecoration(
color: Color(0xFF1AAB5F), color: Color(0xFF1AAB5F),
), ),
child: SafeArea(
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
@ -180,7 +181,8 @@ class _HomePageWidgetState extends State<HomePageWidget> {
Text( Text(
'FRE ACCESS', 'FRE ACCESS',
style: FlutterFlowTheme.of(context).bodyMedium.override( style: FlutterFlowTheme.of(context).bodyMedium.override(
fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily, fontFamily:
FlutterFlowTheme.of(context).bodyMediumFamily,
color: FlutterFlowTheme.of(context).info, color: FlutterFlowTheme.of(context).info,
letterSpacing: 0.0, letterSpacing: 0.0,
useGoogleFonts: GoogleFonts.asMap().containsKey( useGoogleFonts: GoogleFonts.asMap().containsKey(
@ -192,6 +194,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
const SizedBox(width: 60.0), const SizedBox(width: 60.0),
], ],
), ),
),
); );
} }