feature/payment #77

Closed
manish.zure wants to merge 25 commits from feature/payment into main
3 changed files with 2 additions and 141 deletions
Showing only changes of commit 79c34a62d7 - Show all commits

View File

@ -40,12 +40,6 @@ class AppTheme {
static Color primaryColor = Color(0xff663399);
static void updatePrimaryColor(Color color) {
primaryColor = color;
theme = getThemeFromThemeMode(); // rebuild theme data
AppStyle.changeMyTheme(); // apply to widgets
}
static ThemeData getThemeFromThemeMode() {
return ThemeCustomizer.instance.theme == ThemeMode.light ? lightTheme : darkTheme;
}
@ -64,7 +58,7 @@ class AppTheme {
scaffoldBackgroundColor: Color(0xffF5F5F5),
canvasColor: Colors.transparent,
/// AppBar Theme
/// AppBar Theme
appBarTheme: AppBarTheme(
backgroundColor: Color(0xffF5F5F5), iconTheme: IconThemeData(color: Color(0xff495057)), actionsIconTheme: IconThemeData(color: Color(0xff495057))),

View File

@ -21,7 +21,7 @@ class ThemeCustomizer {
Language currentLanguage = Language.languages.first;
ThemeMode theme = ThemeMode.light;
ThemeMode leftBarTheme = ThemeMode.light;
ThemeMode leftBarTheme = ThemeMode.light;
ThemeMode rightBarTheme = ThemeMode.light;
ThemeMode topBarTheme = ThemeMode.light;
ColorThemeType colorTheme = ColorThemeType.red;

View File

@ -1,133 +0,0 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:marco/helpers/widgets/custom_app_bar.dart';
import 'package:marco/helpers/widgets/my_spacing.dart';
import 'package:marco/helpers/widgets/my_text.dart';
import 'package:marco/helpers/theme/app_theme.dart';
// import 'package:marco/helpers/theme/app_notifier.dart';
// import 'package:provider/provider.dart';
class AppearancePage extends StatefulWidget {
const AppearancePage({super.key});
@override
State<AppearancePage> createState() => _AppearancePageState();
}
class _AppearancePageState extends State<AppearancePage> {
String selectedTheme = "Red";
void _changeTheme(String theme) {
setState(() => selectedTheme = theme);
Color newColor;
switch (theme) {
case "Red":
newColor = Colors.red;
break;
case "Green":
newColor = Colors.green;
break;
case "Blue":
newColor = Colors.blue;
break;
default:
newColor = Colors.red;
}
// dynamically change app color
AppTheme.updatePrimaryColor(newColor);
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFFF9FAFB),
appBar: CustomAppBar(
title: "Appearance",
onBackPressed: () => Get.back(),
),
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 24),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
MyText.titleMedium(
"Change Theme",
fontWeight: 700,
fontSize: 18,
),
MySpacing.height(8),
MyText.bodySmall(
"Select a color theme for your app appearance.",
color: Colors.black54,
),
MySpacing.height(20),
_buildThemeOption("Red", Colors.red),
_buildThemeOption("Green", Colors.green),
_buildThemeOption("Blue", Colors.blue),
],
),
),
);
}
Widget _buildThemeOption(String name, Color color) {
final isSelected = selectedTheme == name;
return GestureDetector(
onTap: () => _changeTheme(name),
child: Container(
margin: const EdgeInsets.only(bottom: 14),
decoration: BoxDecoration(
color: isSelected ? color.withOpacity(0.08) : Colors.white,
borderRadius: BorderRadius.circular(10),
border: Border.all(
color: isSelected ? color : Colors.grey.shade300,
width: isSelected ? 1.5 : 1,
),
boxShadow: [
if (isSelected)
BoxShadow(
color: color.withOpacity(0.15),
blurRadius: 6,
offset: const Offset(0, 3),
),
],
),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 16),
child: Row(
children: [
CircleAvatar(
radius: 10,
backgroundColor: color,
),
MySpacing.width(14),
MyText.bodyMedium(
name,
fontWeight: 600,
color: Colors.black87,
),
const Spacer(),
AnimatedSwitcher(
duration: const Duration(milliseconds: 250),
transitionBuilder: (child, anim) =>
ScaleTransition(scale: anim, child: child),
child: isSelected
? Icon(
Icons.check_circle_rounded,
key: ValueKey(name),
color: color,
size: 22,
)
: const SizedBox.shrink(),
),
],
),
),
),
);
}
}