This commit is contained in:
jantunesmesias 2024-08-26 16:24:25 -03:00
parent 471e5e3e62
commit 2c1ca87b3b
2 changed files with 42 additions and 51 deletions

View File

@ -215,16 +215,9 @@ class _CardItemTemplateComponentWidgetState
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0), borderRadius: BorderRadius.circular(8.0),
), ),
child: Container(
width: double.infinity,
decoration: BoxDecoration(
color: FlutterFlowTheme.of(context).warning,
),
padding: const EdgeInsets.all(8),
child: _buildContent(), child: _buildContent(),
), ),
), ),
),
); );
} }
} }

View File

@ -165,10 +165,8 @@ class _HomePageWidgetState extends State<HomePageWidget> {
decoration: const BoxDecoration( decoration: const BoxDecoration(
color: Color(0xFF1AAB5F), color: Color(0xFF1AAB5F),
), ),
child: Align(
alignment: AlignmentDirectional.center,
child: Row( child: Row(
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Padding( Padding(
@ -185,6 +183,8 @@ class _HomePageWidgetState extends State<HomePageWidget> {
), ),
), ),
Row( Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
ClipRRect( ClipRRect(
borderRadius: BorderRadius.circular(8.0), borderRadius: BorderRadius.circular(8.0),
@ -198,8 +198,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
Text( Text(
'FRE ACCESS', 'FRE ACCESS',
style: FlutterFlowTheme.of(context).bodyMedium.override( style: FlutterFlowTheme.of(context).bodyMedium.override(
fontFamily: fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily,
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(
@ -211,7 +210,6 @@ class _HomePageWidgetState extends State<HomePageWidget> {
const SizedBox(), const SizedBox(),
], ],
), ),
),
); );
} }