WIP
This commit is contained in:
parent
471e5e3e62
commit
2c1ca87b3b
|
@ -215,14 +215,7 @@ class _CardItemTemplateComponentWidgetState
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
),
|
),
|
||||||
child: Container(
|
child: _buildContent(),
|
||||||
width: double.infinity,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: FlutterFlowTheme.of(context).warning,
|
|
||||||
),
|
|
||||||
padding: const EdgeInsets.all(8),
|
|
||||||
child: _buildContent(),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -165,52 +165,50 @@ class _HomePageWidgetState extends State<HomePageWidget> {
|
||||||
decoration: const BoxDecoration(
|
decoration: const BoxDecoration(
|
||||||
color: Color(0xFF1AAB5F),
|
color: Color(0xFF1AAB5F),
|
||||||
),
|
),
|
||||||
child: Align(
|
child: Row(
|
||||||
alignment: AlignmentDirectional.center,
|
mainAxisSize: MainAxisSize.min,
|
||||||
child: Row(
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
mainAxisSize: MainAxisSize.max,
|
children: [
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
Padding(
|
||||||
children: [
|
padding: const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
|
||||||
Padding(
|
child: IconButton(
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
|
icon: const Icon(
|
||||||
child: IconButton(
|
Icons.menu_rounded,
|
||||||
icon: const Icon(
|
color: Colors.white,
|
||||||
Icons.menu_rounded,
|
size: 28.0,
|
||||||
color: Colors.white,
|
|
||||||
size: 28.0,
|
|
||||||
),
|
|
||||||
onPressed: () async {
|
|
||||||
scaffoldKey.currentState!.openEndDrawer();
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
|
onPressed: () async {
|
||||||
|
scaffoldKey.currentState!.openEndDrawer();
|
||||||
|
},
|
||||||
),
|
),
|
||||||
Row(
|
),
|
||||||
children: [
|
Row(
|
||||||
ClipRRect(
|
mainAxisSize: MainAxisSize.max,
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
child: Image.asset(
|
children: [
|
||||||
'assets/images/logo.png',
|
ClipRRect(
|
||||||
width: 50.0,
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
height: 200.0,
|
child: Image.asset(
|
||||||
fit: BoxFit.none,
|
'assets/images/logo.png',
|
||||||
),
|
width: 50.0,
|
||||||
|
height: 200.0,
|
||||||
|
fit: BoxFit.none,
|
||||||
),
|
),
|
||||||
Text(
|
),
|
||||||
'FRE ACCESS',
|
Text(
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
'FRE ACCESS',
|
||||||
fontFamily:
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
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(
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(),
|
const SizedBox(),
|
||||||
],
|
],
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue