constant and profile page

WORK-LDE
Lucas Delanier 2 years ago
parent 0455954319
commit ae864d6bc0

@ -50,16 +50,28 @@ class _ProfileScreenState extends State<ProfileScreen> {
height: double.infinity,
color: bgColor,
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: settingPadding),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: EdgeInsets.only(top: 68.h),
child: ProfileComponent(),
),
Text(
"Compte",
style: GoogleFonts.plusJakartaSans(
color: grayText,
fontWeight: FontWeight.w800,
fontSize: 16),
),
],
),
),
),
),
);
}
}

@ -21,3 +21,4 @@ const grayText = Color(0xFF898989);
// All constants important too us
const defaultPadding = 30.0;
const settingPadding = 12.0;

Loading…
Cancel
Save