How to Speed Up Listing Posting to Under 2 Minutes?
A user opens a classifieds app to sell a sofa. They see an empty form with dozens of fields. Photos upload one by one, and the "Publish" button stays inactive for 30 seconds. They close the app and go to a competitor. According to Statista, 70% of users abandon an app if posting takes more than 3 minutes. We have over 8 years in mobile development and 12+ launched marketplaces. In this article, we break down how to avoid these scenarios and build an app that converts. We once rewrote the posting form for a major classifieds platform: after implementing a dynamic form and parallel photo upload, the posting conversion rate increased by 40%. Get a consultation — we'll evaluate your project.
Listing Posting: Minimum Friction
The listing form flow: category → fill fields → photos → price → publish. Fields depend on category (for cars: VIN, mileage, year; for real estate: area, floor, deal type). Dynamic form: when the category changes, fields redraw. JSON Schema from server → form generation on the client (no hardcoded fields).
Photo upload is the biggest bottleneck. The user wants to upload 10 photos. Compare approaches:
| Approach | Time for 10 photos (5 MB each) | Network load | UX |
|---|---|---|---|
| Sequential | ~50 sec | Low | Bad: wait |
| Parallel (10 threads) | ~8 sec | High | Mediocre: may fail |
| Optimal (3 threads + compression) | ~12 sec | Moderate | Excellent: progress bars |
Compression before upload: UIImage.jpegData(compressionQuality: 0.8) or Bitmap.compress(Bitmap.CompressFormat.JPEG, 80, stream). Photos from modern smartphones are 8–15 MB in RAW. After compression, they become 1–2 MB. Sufficient for listings, saving 5–10x traffic. 90% of listings with photos attract 60% more views.
Determining the Listing's Location
Listing location can be current coordinates, map selection, or address input with geocoding. For selling items, a district/city is usually enough without precise address — important for seller safety. Exact coordinates are needed for real estate and cars.
Why Map Search Is a Must-Have for Classifieds
Users want to see listings near their home. Map search is a key scenario for real estate, cars, and services. 50% of users actively use the map for search. How it works: user moves the map, listings update for the visible area. onCameraIdle (Google Maps) / onMapIdle (Mapbox) → request with bbox of current viewport. Markers on the map, tap opens a listing card. For real estate, clustering is important: 50 listings in one building. The cluster shows the count; zoom in reveals individual markers or a list.
Full-Text Search and Filtering
For search, we use Elasticsearch or Typesense. Typesense is faster indexing and simpler configuration, but Elasticsearch is more flexible for complex queries. The client sends a request with 300 ms debounce on the input field. Search with morphology (Russian: "машина" finds "машины", "машиной") — via Elasticsearch with russian analyzer or Typesense with Russian stemmer. Price filter: range slider. RangeSlider in Material 3 (Android) / custom GeometryReader-based range slider (SwiftUI or RangeSeekSlider library). Values debounce before request.
How to Set Up a Chat Between Seller and Buyer
A chat without sharing phone numbers is a key trust feature. Firebase Realtime Database or Supabase Realtime is a quick way to launch real-time chat. For serious scale, use a custom WebSocket server or Stream Chat SDK. Compare solutions:
| Solution | Startup Cost | Scalability | Implementation Time |
|---|---|---|---|
| Firebase | Low (pay-as-you-go) | Limited (up to ~1M msg/day) | Days |
| Supabase | Low | Good (up to ~10M msg/day) | Days |
| WebSocket server | Medium (VPS rental) | High (any load) | Weeks |
| Stream Chat SDK | High (subscription) | Very high | Days |
Message structure: { id, conversation_id, sender_id, text, image_url, timestamp, read_at }. read_at for read status. Push notification on new message — FCM/APNs data push with conversation_id in payload for deep link.
Photos in chat: user sends a photo. Compress to 800–1200px, upload to S3/Cloudflare R2, message contains URL. Lazy loading with progressive placeholder on display. Anti-spam: server-side rate limiting, user blocking.
Listing Moderation
Client side: warning when entering phone/email in the listing text (bypassing platform contacts). "Report" button on each listing — popup with reason, sent to server. Automatic photo moderation: Google Cloud Vision API SafeSearch — check for explicit content. Integrates into the server upload pipeline; client receives listing status (pending_moderation / approved / rejected).
Monetization and Promotion
"Bump listing", "VIP status", "highlight" — classic paid options. In-app purchase via StoreKit 2 / Google Play Billing or one-time payment via Stripe. Properly configured monetization covers development costs. Contact us to calculate your monetization model.
What Is Included in Our Work
- Architecture and database design (categories, schemas, indexes)
- Mobile app development (iOS/Android/Flutter)
- Search engine integration (Elasticsearch/Typesense)
- Chat and push notification implementation
- Content moderation (automatic + manual)
- CI/CD setup for App Store and Google Play publishing
- Source code and documentation access
- Training for the client's team
- 2-week post-release support
Our Process
- Analytics — research competitors, gather requirements, define MVP.
- Design — create architecture, JSON Schema for categories, prototype forms.
- Implementation — iterative development: posting → search → map → chat → moderation → monetization.
- Testing — load testing (up to 10,000 listings per minute), UI tests, regression.
- Deployment — publish to stores, set up monitoring, handover project.
Timeline and Cost
Estimated development time: 14 to 24 weeks. Cost is calculated individually after analyzing your project. We guarantee stability under load and compliance with App Store Review Guidelines. Our team consists of experienced Flutter developers with many years of experience. Contact us for a consultation and a preliminary estimate for your project.







