Checkout Screen in Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Checkout Screen in Mobile App
Medium
~3-5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Development of Checkout Screen in Mobile Application

Checkout is screen where users abandon most. Long form with address fields, delivery choice and card input on mobile turns into ordeal if not designed specifically for touch interaction. Technically most complex screen in e-commerce app: payment integration, real-time validation, keyboard work, multiple scroll zones management.

Payment integrations

Most labor-intensive part. Each provider — separate SDK with own requirements.

Stripestripe-react-native or native Stripe iOS/Android SDK. CardField component handles card input with auto-formatting and validation. PaymentSheet — ready bottom sheet from Stripe, minimal customization maximum reliability. For custom UI — useStripe().confirmPayment() with PaymentIntent client secret from backend.

Apple Pay / Google Pay. On iOS — PKPaymentAuthorizationViewController, in React Native via @stripe/stripe-react-native with useApplePay(). On Android — PaymentsClient from Google Pay API + IsReadyToPayRequest. Show both buttons only if payment method available on device — stripe.isApplePaySupported() / paymentsClient.isReadyToPay().

Important: PCI DSS forbids raw card data through own backend. Only tokenization on SDK provider side. Apple App Review rejects apps with self-hosted card forms.

Form management

Checkout form usually contains 10–15 fields. Without proper field navigation (returnKeyType="next" + ref.focus() on next input) unbearable. In React Native Hook Form — Controller + useRef array for fields + auto setFocus on error after submit.

Keyboard — main pain. KeyboardAwareScrollView from react-native-keyboard-aware-scroll-view works better than standard KeyboardAvoidingView: auto scrolls to active field and correctly handles height change on orientation change.

On iOS numeric fields (postal code, CVV) should open UIKeyboardType.numberPad. decimalPad for amount. emailAddress for email. Wrong keyboardType — trifle, noticed by all users and not mentioned.

Validation and UX

Real-time validation only for fields with deterministic format: phone, email, postal code, card number. For text fields (name, address) — only after blur (onBlur), else error "wrong name" appears on third letter.

Address autocomplete via Google Places Autocomplete API or Dadata API (for RU) — mandatory element. Manual street, building, apartment entry in separate fields increases fill time 3–4x and delivery errors.

Case from practice: delivery app, React Native + Stripe. On Apple Pay payment on physical iPhone XR app crashed with NSException right after authorization. Reason — PKPaymentAuthorizationController called from background thread. Moving to DispatchQueue.main in native module fixed. React Native bridge doesn't guarantee main thread for callbacks.

Multi-step checkout

For long checkout use stepper (steps: address → delivery → payment → confirmation). Each step — separate component with own validation. Store state in one store, don't pass through props between screens. ProgressBar top shows current step.

Back button must preserve entered data — don't reset form returning to previous step.

What's included

  • Form with address fields (with autocomplete via Places API)
  • Delivery method selection with cost and timeline calculation
  • List of user's saved addresses
  • Payment provider integration (Stripe, CloudPayments, YooKassa etc)
  • Apple Pay / Google Pay with availability check
  • Real-time validation + API error handling
  • Order confirmation screen with number and details
  • Storage of last used address and card

Timeline

3–5 working days — depends on number of payment providers, discount logic complexity and address validation requirements. Single provider integration with Apple Pay/Google Pay — 2–3 days. Cost calculated individually.