This commit is contained in:
Hamza-Ayed
2023-08-13 02:19:18 +03:00
parent f84c82bcc8
commit 8b46545fbc
23 changed files with 715 additions and 176 deletions

View File

@@ -2,4 +2,5 @@ class BoxName {
static const String driverID = "driverID";
static const String lang = "lang";
static const String agreeTerms = "agreeTerms";
}

View File

@@ -1,5 +1,5 @@
class AppLink {
static const String server = 'https://ride.mobile-app.store/';
static const String server = 'https://ride.mobile-app.store';
static const String googleMapsLink = 'https://maps.googleapis.com/maps/api/';
static const String test = "$server/test.php";
@@ -9,12 +9,11 @@ class AppLink {
static const String uploadImageType = "$server/uploadImageType.php";
//==================certifcate==========
static const String certifcate =
'https://portfolio.mobile-app.store/hamzaayed/certifications';
static const String getCertificate = "$certifcate/get.php";
static const String addCertificate = "$certifcate/add.php";
static const String deleteCertificate = "$certifcate/delete.php";
static const String updateCertificate = "$certifcate/update.php";
static const String location = '$server/ride/location';
static const String getCarsLocationByPassenger = "$location/get.php";
static const String addCarsLocationByPassenger = "$location/add.php";
static const String deleteCarsLocationByPassenger = "$location/delete.php";
static const String updateCarsLocationByPassenger = "$location/update.php";
//==================Blog=============
static const String blog =
@@ -23,4 +22,8 @@ class AppLink {
static const String addBlog = "$blog/add.php";
static const String deleteBlog = "$blog/delete.php";
static const String updateBlog = "$blog/update.php";
//===================Auth============
static const String auth = 'https://ride.mobile-app.store/auth/';
static const String login = "$auth/login.php";
}

View File

@@ -7,25 +7,25 @@ class AppStyle {
fontWeight: FontWeight.bold,
fontSize: 40,
color: AppColor.accentColor,
fontFamily: GoogleFonts.pacifico().fontFamily);
fontFamily: GoogleFonts.josefinSans().fontFamily);
static TextStyle headtitle2 = TextStyle(
fontWeight: FontWeight.bold,
fontSize: 26,
color: AppColor.primaryColor,
fontFamily: GoogleFonts.eduSaBeginner().fontFamily);
fontFamily: GoogleFonts.josefinSans().fontFamily);
static TextStyle title = TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
color: AppColor.primaryColor,
fontFamily: GoogleFonts.roboto().fontFamily);
fontFamily: GoogleFonts.josefinSans().fontFamily);
static TextStyle subtitle = TextStyle(
fontWeight: FontWeight.bold,
fontSize: 13,
color: AppColor.primaryColor,
fontFamily: GoogleFonts.roboto().fontFamily);
fontFamily: GoogleFonts.josefinSans().fontFamily);
static TextStyle number = TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
color: AppColor.primaryColor,
fontFamily: GoogleFonts.roboto().fontFamily);
fontFamily: GoogleFonts.josefinSans().fontFamily);
}