Flutter's strength is "one codebase, two stores". Most screenshot generators don't share that philosophy — they make you build the design twice, once at iPhone aspect ratios and once at Android. Screenshotify is designed around the multi-platform reality: pick the devices you target, design once with the multi-panel composer, export a ZIP organized by platform → device → locale.
flutter screenshot works from the command line.The screenshot pub package captures raw widget screenshots from your running app. Useful for capturing the source frames, but doesn't add marketing overlays. Same trade-off as Fastlane snapshot on the iOS side: real app capture vs designed marketing carousel.
The combination most Flutter teams settle on: flutter screenshot or the screenshot pub
package for capturing panels from the real app, then Screenshotify for the marketing composition
and localized exports.
Same app screenshot looks different in an iPhone frame vs a Pixel frame because of bezel thickness, notch geometry, and Android nav-bar conventions. Screenshotify renders both correctly; you can toggle status bars on iOS (9:41 convention) and configure tilt angles per device class to keep the carousel coherent across both stores.