BASE: Update Icons & Name Of The App.

This commit is contained in:
2025-12-04 10:23:59 +05:00
parent b04050384d
commit e602782edd
228 changed files with 34364 additions and 7905 deletions

View File

@@ -1,7 +1,7 @@
import 'package:customer/themes/app_them_data.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get/get.dart' hide Trans;
class MaintenanceModeScreen extends StatelessWidget {
const MaintenanceModeScreen({super.key});
@@ -14,14 +14,24 @@ class MaintenanceModeScreen extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Center(child: Image.asset('assets/images/maintenance.png', height: 200, width: 200)),
Center(
child: Image.asset(
'assets/images/maintenance.png',
height: 200,
width: 200,
),
),
const SizedBox(height: 20),
Text("We'll be back soon!".tr(), style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold)),
Text(
"We'll be back soon!".tr(),
style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
const SizedBox(height: 10),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: Text(
"Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!".tr(),
"Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!"
.tr(),
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 16),
),