How an app gets built without code
We start from a list of actions: what the user wants to do inside the app, in the order they do it. That list produces the screens. In the visual editor you drag components onto a screen (list, card, form, button, map), bind them to a data collection and define what happens on tap: open another screen, save a record, send a notification. The editor has a live preview on your phone, so you see the result immediately. Once the structure is stable you request a build — the platform compiles separately for iOS and Android and hands you an install link for testing on a real device.
Native, not a wrapped website
The difference between a real app and a website in a shell shows up in three places: how long lists scroll, how screens transition, and what phone hardware you can reach. 4myapp renders native components, so long lists scroll smoothly, transitions follow system gestures (edge swipe back on iOS, hardware button on Android), and the app can use the camera, geolocation, push notifications and local storage. This also matters for App Store acceptance: apps that are nothing more than a wrapped website are rejected at review all the time.
The screens you get on day one
Every new project starts from a working skeleton, not an empty canvas: a three-step onboarding, sign-in and sign-up, a main screen with a list, a detail screen, a user profile, settings and a notification centre. On top of that you add the screens specific to your business — a service catalogue, a booking form, an internal order history, a map of your locations. Inherited screens can be deleted without breaking navigation, because the navigation bar recalculates itself.
From the first build to the store version
The test build installs on your team phones through TestFlight (iOS) and the internal testing track in Play Console (Android) — no publishing, no review. Once you have validated the flows on real devices, the same build goes to Apple and Google review. Apple usually answers within 24–48 hours, Google within a few hours to a few days. Later versions follow exactly the same path, and the installed app updates itself on your users devices.