duplication profil
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ed66e21aff
commit
fd06d9b55d
@ -0,0 +1,75 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common_widget/setting_row.dart';
|
||||||
|
import 'package:smartfit_app_mobile/view/profile/change_email.dart';
|
||||||
|
import 'package:smartfit_app_mobile/view/profile/change_password.dart';
|
||||||
|
import 'package:smartfit_app_mobile/view/profile/change_username.dart';
|
||||||
|
|
||||||
|
class ProfileCompte extends StatelessWidget {
|
||||||
|
const ProfileCompte(this.accountArr, {super.key});
|
||||||
|
|
||||||
|
final List accountArr;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 15),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: TColor.white,
|
||||||
|
borderRadius: BorderRadius.circular(15),
|
||||||
|
boxShadow: const [BoxShadow(color: Colors.black12, blurRadius: 2)]),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Compte",
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.black,
|
||||||
|
fontSize: 16,
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 8,
|
||||||
|
),
|
||||||
|
ListView.builder(
|
||||||
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemCount: accountArr.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
var iObj = accountArr[index];
|
||||||
|
return SettingRow(
|
||||||
|
icon: iObj["image"]!,
|
||||||
|
title: iObj["name"]!,
|
||||||
|
onPressed: () {
|
||||||
|
if (iObj["tag"] == "1") {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const ChangeUsernameView(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else if (iObj["tag"] == "2") {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const ChangePasswordView(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const ChangeEmailView(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,69 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common_widget/button/round_button.dart';
|
||||||
|
|
||||||
|
class ProfileEntete extends StatelessWidget {
|
||||||
|
const ProfileEntete(this.username, {super.key});
|
||||||
|
|
||||||
|
final String username;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Row(
|
||||||
|
children: [
|
||||||
|
ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(30),
|
||||||
|
child: Image.asset(
|
||||||
|
"assets/img/u1.png",
|
||||||
|
width: 50,
|
||||||
|
height: 50,
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 15,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
username,
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.black,
|
||||||
|
fontSize: 14,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"Course à pied",
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.gray,
|
||||||
|
fontSize: 12,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 70,
|
||||||
|
height: 25,
|
||||||
|
child: RoundButton(
|
||||||
|
title: "Editer",
|
||||||
|
type: RoundButtonType.bgGradient,
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
onPressed: () {
|
||||||
|
// Navigator.push(
|
||||||
|
// context,
|
||||||
|
// MaterialPageRoute(
|
||||||
|
// builder: (context) => const ActivityTrackerView(),
|
||||||
|
// ),
|
||||||
|
// );
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common_widget/title_subtitle_cell.dart';
|
||||||
|
|
||||||
|
class ProfileInfoUser extends StatelessWidget {
|
||||||
|
const ProfileInfoUser({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: TitleSubtitleCell(
|
||||||
|
title: "??? cm",
|
||||||
|
subtitle: "Taille",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 15,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: TitleSubtitleCell(
|
||||||
|
title: "?? kg",
|
||||||
|
subtitle: "Poids",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 15,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: TitleSubtitleCell(
|
||||||
|
title: "?? ans",
|
||||||
|
subtitle: "Age",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,117 @@
|
|||||||
|
import 'package:animated_toggle_switch/animated_toggle_switch.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
||||||
|
|
||||||
|
class ProfileNotification extends StatefulWidget {
|
||||||
|
const ProfileNotification(this.positive, {Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
final bool positive;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<ProfileNotification> createState() => _ProfileNotification();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ProfileNotification extends State<ProfileNotification> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
bool check = widget.positive;
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 15),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: TColor.white,
|
||||||
|
borderRadius: BorderRadius.circular(15),
|
||||||
|
boxShadow: const [BoxShadow(color: Colors.black12, blurRadius: 2)]),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Notification",
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.black,
|
||||||
|
fontSize: 16,
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 8,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 30,
|
||||||
|
child:
|
||||||
|
Row(crossAxisAlignment: CrossAxisAlignment.center, children: [
|
||||||
|
Image.asset("assets/img/p_notification.png",
|
||||||
|
height: 15, width: 15, fit: BoxFit.contain),
|
||||||
|
const SizedBox(
|
||||||
|
width: 15,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
"Push Notifications",
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.black,
|
||||||
|
fontSize: 12,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
CustomAnimatedToggleSwitch<bool>(
|
||||||
|
current: check,
|
||||||
|
values: const [false, true],
|
||||||
|
spacing: 0.0,
|
||||||
|
indicatorSize: const Size.square(25.0),
|
||||||
|
animationDuration: const Duration(milliseconds: 200),
|
||||||
|
animationCurve: Curves.linear,
|
||||||
|
onChanged: (b) => setState(() => check = b),
|
||||||
|
iconBuilder: (context, local, global) {
|
||||||
|
return const SizedBox();
|
||||||
|
},
|
||||||
|
cursors: const ToggleCursors(
|
||||||
|
defaultCursor: SystemMouseCursors.click),
|
||||||
|
onTap: (_) => setState(() => check = !check),
|
||||||
|
iconsTappable: false,
|
||||||
|
wrapperBuilder: (context, global, child) {
|
||||||
|
return Stack(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
children: [
|
||||||
|
Positioned(
|
||||||
|
left: 10.0,
|
||||||
|
right: 10.0,
|
||||||
|
height: 20.0,
|
||||||
|
child: DecoratedBox(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
gradient:
|
||||||
|
LinearGradient(colors: TColor.secondaryG),
|
||||||
|
borderRadius:
|
||||||
|
const BorderRadius.all(Radius.circular(50.0)),
|
||||||
|
),
|
||||||
|
)),
|
||||||
|
child,
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
foregroundIndicatorBuilder: (context, global) {
|
||||||
|
return SizedBox.fromSize(
|
||||||
|
size: const Size(5, 5),
|
||||||
|
child: DecoratedBox(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: TColor.white,
|
||||||
|
borderRadius:
|
||||||
|
const BorderRadius.all(Radius.circular(50.0)),
|
||||||
|
boxShadow: const [
|
||||||
|
BoxShadow(
|
||||||
|
color: Colors.black38,
|
||||||
|
spreadRadius: 0.05,
|
||||||
|
blurRadius: 1.1,
|
||||||
|
offset: Offset(0.0, 0.8))
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,70 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
||||||
|
import 'package:smartfit_app_mobile/common_widget/setting_row.dart';
|
||||||
|
import 'package:smartfit_app_mobile/view/profile/contact_us_view.dart';
|
||||||
|
import 'package:smartfit_app_mobile/view/profile/policy_view.dart';
|
||||||
|
|
||||||
|
class ProfileOther extends StatelessWidget {
|
||||||
|
const ProfileOther(this.otherArr, {super.key});
|
||||||
|
|
||||||
|
final List otherArr;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 15),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: TColor.white,
|
||||||
|
borderRadius: BorderRadius.circular(15),
|
||||||
|
boxShadow: const [BoxShadow(color: Colors.black12, blurRadius: 2)]),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Autre",
|
||||||
|
style: TextStyle(
|
||||||
|
color: TColor.black,
|
||||||
|
fontSize: 16,
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 8,
|
||||||
|
),
|
||||||
|
ListView.builder(
|
||||||
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemCount: otherArr.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
var iObj = otherArr[index] as Map? ?? {};
|
||||||
|
return SettingRow(
|
||||||
|
icon: iObj["image"].toString(),
|
||||||
|
title: iObj["name"].toString(),
|
||||||
|
onPressed: () {
|
||||||
|
if (iObj["tag"] == "6") {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const PrivacyPolicyView(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else if (iObj["tag"] == "5") {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const ContactUsView(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// Autre logique si nécessaire pour d'autres éléments de la liste
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue