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