2026-04-06 redesign splash screen and drawer menu

This commit is contained in:
Hamza-Ayed
2026-04-06 22:00:13 +03:00
parent 531c6d07ef
commit 45222d2887
8 changed files with 1112 additions and 310 deletions

View File

@@ -63,6 +63,7 @@ class MapPagePassenger extends StatelessWidget {
CashConfirmPageShown(),
const PaymentMethodPage(),
const SearchingCaptainWindow(),
AttributionMap(),
// timerForCancelTripFromPassenger(),
// const DriverTimeArrivePassengerPage(),
// const TimerToPassengerFromDriver(),
@@ -81,6 +82,35 @@ class MapPagePassenger extends StatelessWidget {
}
}
class AttributionMap extends StatelessWidget {
const AttributionMap({
super.key,
});
@override
Widget build(BuildContext context) {
return Positioned(
left: 4,
bottom: 20,
child: RotatedBox(
quarterTurns: 0, // يخلي النص عمودي (من تحت لفوق)
child: Opacity(
opacity: 0.7,
child: Text(
"Intaleq Maps",
// "Intaleq Maps • © OpenStreetMap contributors",
style: TextStyle(
fontSize: 10,
color: Colors.grey[700],
fontWeight: FontWeight.w400,
),
),
),
),
);
}
}
class CancelRidePageShow extends StatelessWidget {
const CancelRidePageShow({
super.key,