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.
114 lines
3.3 KiB
114 lines
3.3 KiB
import 'package:smartfit_app_mobile/common_widget/container/profile/profile_compte.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/container/profile/profile_entete.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/container/profile/profile_info_user.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/container/profile/profile_notification.dart';
|
|
import 'package:smartfit_app_mobile/common_widget/container/profile/profile_other.dart';
|
|
import 'package:smartfit_app_mobile/modele/user.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
|
|
|
class MobileProfileView extends StatefulWidget {
|
|
const MobileProfileView({super.key});
|
|
|
|
@override
|
|
State<MobileProfileView> createState() => _MobileProfileView();
|
|
}
|
|
|
|
class _MobileProfileView extends State<MobileProfileView> {
|
|
bool positive = false;
|
|
|
|
List accountArr = [
|
|
{
|
|
"image": "assets/img/p_personal.png",
|
|
"name": "Changer son pseudo",
|
|
"tag": "1"
|
|
},
|
|
{
|
|
"image": "assets/img/p_personal.png",
|
|
"name": "Changer son email",
|
|
"tag": "3"
|
|
},
|
|
{
|
|
"image": "assets/img/p_personal.png",
|
|
"name": "Changer son mot de passe",
|
|
"tag": "2"
|
|
},
|
|
];
|
|
|
|
List otherArr = [
|
|
{"image": "assets/img/p_contact.png", "name": "Nous contacter", "tag": "5"},
|
|
{
|
|
"image": "assets/img/p_privacy.png",
|
|
"name": "Politique de confidentialité",
|
|
"tag": "6"
|
|
},
|
|
];
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
String username = context.watch<User>().username;
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: TColor.white,
|
|
centerTitle: true,
|
|
elevation: 0,
|
|
leadingWidth: 0,
|
|
title: Text(
|
|
"Profile",
|
|
style: TextStyle(
|
|
color: TColor.black, fontSize: 16, fontWeight: FontWeight.w700),
|
|
),
|
|
actions: [
|
|
InkWell(
|
|
onTap: () {},
|
|
child: Container(
|
|
margin: const EdgeInsets.all(8),
|
|
height: 20,
|
|
width: 20,
|
|
alignment: Alignment.center,
|
|
decoration: BoxDecoration(
|
|
color: TColor.lightGray,
|
|
borderRadius: BorderRadius.circular(10)),
|
|
child: Image.asset(
|
|
"assets/img/more_btn.png",
|
|
width: 15,
|
|
height: 15,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
backgroundColor: TColor.white,
|
|
body: SingleChildScrollView(
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 25),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
ProfileEntete(username),
|
|
const SizedBox(
|
|
height: 15,
|
|
),
|
|
const ProfileInfoUser(),
|
|
const SizedBox(
|
|
height: 25,
|
|
),
|
|
ProfileCompte(accountArr),
|
|
const SizedBox(
|
|
height: 25,
|
|
),
|
|
ProfileNotification(positive),
|
|
const SizedBox(
|
|
height: 25,
|
|
),
|
|
ProfileOther(otherArr)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|