You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
justMusic/Sources/justMUSIC/lib/screens/profile_screen.dart

147 lines
5.0 KiB

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:justmusic/values/icons.dart';
import '../components/profile_component.dart';
import '../components/setting_part_component.dart';
import '../main.dart';
import '../values/constants.dart';
class ProfileScreen extends StatefulWidget {
const ProfileScreen({Key? key}) : super(key: key);
@override
State<ProfileScreen> createState() => _ProfileScreenState();
}
class _ProfileScreenState extends State<ProfileScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: PreferredSize(
preferredSize: Size(double.infinity, 58),
child: Container(
height: double.infinity,
color: bgAppBar,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: defaultPadding),
child: Stack(
alignment: Alignment.centerLeft,
children: [
GestureDetector(
onTap: () {
Navigator.pop(context);
},
child: Container(
height: 15,
width: 15,
child: Image(
image: AssetImage("assets/images/return_icon.png"),
height: 8,
),
)),
Align(
child: Text(
"Profile",
style: GoogleFonts.plusJakartaSans(
color: Colors.white,
fontSize: 14,
fontWeight: FontWeight.bold),
),
)
],
),
),
),
),
body: Container(
width: double.infinity,
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, bottom: 40),
child:
ProfileComponent(user: MyApp.userViewModel.userCurrent),
),
Padding(
padding:
const EdgeInsets.only(bottom: 12, left: defaultPadding),
child: Text(
"Compte",
style: GoogleFonts.plusJakartaSans(
color: grayText,
fontWeight: FontWeight.w800,
fontSize: 16),
),
),
ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Column(
children: const [
SettingPartComponent(
icon: JustMusicIcon.profile,
label: 'Compte',
),
SettingPartComponent(
icon: JustMusicIcon.history,
label: 'Historiques des capsules',
),
SettingPartComponent(
icon: JustMusicIcon.spotify,
label: 'Lier un compte Spotify',
),
SettingPartComponent(
icon: JustMusicIcon.trash,
label: 'Supprimer mon compte',
),
SettingPartComponent(
icon: JustMusicIcon.cross,
label: 'Déconnexion',
important: true,
),
],
),
),
Padding(
padding: const EdgeInsets.only(
bottom: 12, left: defaultPadding, top: 40),
child: Text(
"Préférences",
style: GoogleFonts.plusJakartaSans(
color: grayText,
fontWeight: FontWeight.w800,
fontSize: 16),
),
),
ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Column(
children: const [
SettingPartComponent(
icon: JustMusicIcon.theme,
label: 'Thême de l\'application',
),
SettingPartComponent(
icon: JustMusicIcon.notification,
label: 'Notifications',
),
],
),
)
],
),
),
),
),
);
}
}