Skip to content
TopicTracker
From HackerNewsView original
TranslationTranslation

Ask HN: We are building the Flutter equivalent to RN's Ignite CLI

Two developers are building fip-cli, a Dart-based CLI tool to automate tedious Flutter project setup tasks, with the long-term goal of creating an equivalent to React Native's Ignite CLI. The project is in early development and not yet published to pub.dev; the authors are seeking feedback on the architecture, code, and overall concept.

Background

- Flutter is Google's open-source UI toolkit for building cross-platform mobile, web, and desktop apps from a single Dart codebase. React Native (RN) does the same thing for JavaScript/React developers — both compete directly. - Ignite CLI is a well-known React Native starter tool that automates project setup: scaffolding, boilerplate code, state management config, testing setup, etc. It saves hours of grunt work per project. - This project ("fip-cli") aims to do for Flutter what Ignite does for React Native — a command-line tool that generates a pre-configured Flutter project with sensible defaults, so developers don't have to manually wire up common dependencies and folder structures from scratch. - The author is early-stage and asking for architecture feedback before publishing to pub.dev (Flutter/Dart's official package registry).<br>- Understanding this post requires knowing that Flutter's ecosystem lacks a single "standard" project scaffolding tool with the same maturity and mindshare that Ignite has in RN — so there's a real gap being targeted here.