style: shop

This commit is contained in:
2026-07-09 07:24:49 +03:30
parent b9d21c505e
commit 7c067d36f2
2 changed files with 277 additions and 128 deletions
@@ -121,10 +121,14 @@ class ShopScreen extends StatelessWidget {
Widget _header(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(8),
padding: const EdgeInsets.fromLTRB(10, 8, 10, 6),
child: Row(
children: [
const AppBackButton(),
const SizedBox(width: 6),
const Icon(Icons.storefront, color: AppColors.gold, size: 22),
const SizedBox(width: 6),
const GlowText('فروشگاه', size: 20),
const Spacer(),
BlocBuilder<WalletBloc, WalletBlocState>(
builder: (context, s) {
@@ -134,14 +138,16 @@ class ShopScreen extends StatelessWidget {
: null;
return Row(
children: [
StatChip(
_BalancePill(
icon: Icons.confirmation_number,
value: '${w?.tickets ?? 0}',
iconColor: const Color(0xFFC77DFF),
value: _fmt(w?.tickets ?? 0),
),
const SizedBox(width: 8),
StatChip(
_BalancePill(
icon: Icons.monetization_on,
value: '${w?.coins ?? 0}',
iconColor: AppColors.gold,
value: _fmt(w?.coins ?? 0),
),
],
);