This commit is contained in:
jantunesmesias 2024-08-27 13:46:39 -03:00
parent d0fc445714
commit e93fcef350
1 changed files with 25 additions and 35 deletions

View File

@ -145,11 +145,10 @@ class _HomePageWidgetState extends State<HomePageWidget> {
color: Color(0xFF1AAB5F), color: Color(0xFF1AAB5F),
), ),
child: Row( child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Padding( Padding(
padding: const EdgeInsetsDirectional.fromSTEB(10.0, 0.0, 0.0, 0.0), padding: const EdgeInsets.all(10.0),
child: FlutterFlowIconButton( child: FlutterFlowIconButton(
borderRadius: 20.0, borderRadius: 20.0,
borderWidth: 1.0, borderWidth: 1.0,
@ -165,41 +164,32 @@ class _HomePageWidgetState extends State<HomePageWidget> {
}, },
), ),
), ),
Expanded( Row(
child: Row( mainAxisAlignment: MainAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.start, children: [
children: [ ClipRRect(
Padding( borderRadius: BorderRadius.circular(8.0),
padding: const EdgeInsetsDirectional.fromSTEB( child: Image.asset(
60.0, 15.0, 0.0, 0.0), 'assets/images/logo.png',
child: ClipRRect( width: 15.0,
borderRadius: BorderRadius.circular(8.0), height: 15.0,
child: Image.asset( fit: BoxFit.cover,
'assets/images/logo.png', ),
width: 50.0, ),
height: 200.0, const SizedBox(width: 8.0),
fit: BoxFit.none, Text(
'FRE ACCESS',
style: FlutterFlowTheme.of(context).bodyMedium.override(
fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily,
color: FlutterFlowTheme.of(context).info,
letterSpacing: 0.0,
useGoogleFonts: GoogleFonts.asMap().containsKey(
FlutterFlowTheme.of(context).bodyMediumFamily),
), ),
), ),
), ],
Padding(
padding:
const EdgeInsetsDirectional.fromSTEB(0.0, 15.0, 0.0, 0.0),
child: Text(
'FRE ACCESS',
style: FlutterFlowTheme.of(context).bodyMedium.override(
fontFamily:
FlutterFlowTheme.of(context).bodyMediumFamily,
color: FlutterFlowTheme.of(context).info,
letterSpacing: 0.0,
useGoogleFonts: GoogleFonts.asMap().containsKey(
FlutterFlowTheme.of(context).bodyMediumFamily),
),
),
),
],
),
), ),
const SizedBox(width: 60.0),
], ],
), ),
); );