Skip to main content

Questions

Can you use your business app on mobile?

Yes. An application generated by Blueprint Maker is a web application deployed at its own address: it opens in the phone's browser, with nothing to install and no app store involved, and shows exactly the same data as on a desktop. You can add it to the home screen so it opens full-screen with its own icon. The one limit to know about: it needs a connection, there is no offline mode.

A web address, not an app to install

The generated application is deployed to a dedicated URL. On a phone you open it like any website: the link is enough. Nothing to download, nothing to update, no app store to convince, and no separate Android or iOS build to maintain.

The practical consequence matters more than the technical detail: it is the same server and the same database as on the computer. What a colleague enters from the office appears on the phone with no sync to trigger, and the other way round. There are never two copies of the data that could contradict each other.

Added to the home screen, it behaves like an app

Every generated application ships with a web manifest and its icon. From the phone's browser, the “Add to home screen” option installs a shortcut that opens the application full-screen, without an address bar, with its own name and accent colour. Visually, the gap with an installed app becomes thin.

The limit is real and deliberate: there is no offline mode. A connection is required both to read and to enter data. That is a design decision, not an oversight: the mechanism that would allow working without a network caches the application's code, and a badly invalidated cache serves a stale version after an update, producing failures that are hard for a user to make sense of. On a site with no signal, better to know beforehand.

What was handled for small screens

A business app on a phone always breaks in the same places: tables, dashboards and landscape orientation. These were addressed in the foundation shared by every generated application, so there is nothing to ask for and nothing to configure.

The result is not a mobile-first application: it is a complete business application that stays usable from a phone, to check a record, log a job or verify stock between two appointments.

  • Tables: horizontal scrolling with a minimum width per column, instead of columns squeezed past legibility
  • Phone in landscape: the height cap on tables is lifted below 560 px of screen height, so the table body stays visible
  • Dashboard: indicators drop to two columns below 640 px, then to a single one below 420 px
  • Kanban views: a single column below 640 px, rather than sideways scrolling
  • Sidebar: its height follows the actually visible area, so the bottom of the menu does not disappear behind the browser bar

Going further

Related questions

Generate your application, open it on your phone