- Rename app: Waseel (name, slug, scheme waseel://, com.waseel.app ids, splash) - Payments: replace Stripe with Areeba hosted checkout (create/verify API routes, lib/areeba.ts, WebBrowser-based payment flow) - Maps: migrate address autocomplete to Places API (New), drop legacy library - Web support: map stub for web (native maps are iOS/Android only) - Auth: keep email + Google OAuth; fix OAuth redirect for Expo Go - Add scripts/seed-db.mjs (schema + Lebanese driver seed) - Pin Expo SDK 51 compatible package versions
15 lines
531 B
TypeScript
15 lines
531 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
// react-native-maps does not support web. This stub keeps the web bundle
|
|
// working for local testing; use a native build for real map functionality.
|
|
export const Map = () => {
|
|
return (
|
|
<View className="w-full h-full rounded-2xl bg-general-100 flex items-center justify-center">
|
|
<Text className="text-general-200 text-center font-JakartaMedium">
|
|
Map is not available on web.{"\n"}Run on Android/iOS for the full
|
|
experience.
|
|
</Text>
|
|
</View>
|
|
);
|
|
};
|