Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
feasy is command line for creating Stateful and Stateless widget and screens for flutter
Feasy is a humble CLI, whose purpose is to assist Flutter developers in creating widgets and screens without the boilerplate. It can easily generate templates for Flutter Stateful and Stateless widgets and screens
🚀 Extremely easy to pick up and use in Flutter projects.
🐙 Flexible - feasy create widget in lib/wigdets
folder and screens in lib/screens
folder.
⚙️ Configurable - feasy create stateful and stateless widget and screens with just sample options.
npm install -g feasy
# Or:
yarn global add feasy
Alterntively, use:
npx feasy [...]
# e.g.
npx feasy screen "hello world"
using npx
, the latest version is always used.
Feasy consists of two commands: screen
(or s
, --screen
) and widget
(or w
, --widget
):
feasy screen "name" [options]
This command generates a new Flutter screen, based on the name
and options
passed to it
feasy s
is an alias of feasy --screen
is an alias of feasy screen
.
stateful
(or f
, full
) Create Stateful screen
feasy screen "hello world" stateful # Create Stateful screen in lib/screens with routename
stateless
(or l
, less
) Create Stateless screen
feasy screen "hello world" stateless # Create Stateless screen in lib/screens with routename
appbar
(or a
, --appbar
) Add App Bar to your screen
feasy screen "hello world" stateless appbar # Create Stateless screen in lib/screens with routename and App Bar
bottomnavigationbar
(or b
, --bottomnavigationbar
) Add Bottom Navigation Bar to your screen
feasy screen "hello world" stateless bottomnavigationbar # Create Stateless screen in lib/screens with routename and Bottom Navigation Bar
PS: you can combine appbar
and bottomnavigationbar
options
feasy widget "name" [options]
This command generates a new Flutter widget, based on the name
and options
passed to it
feasy w
is an alias of feasy --widget
is an alias of feasy widget
.
stateful
(or f
, full
) Create Stateful widget
feasy widget "hello world" stateful # Create Stateful widget in lib/widgets
stateless
(or l
, less
) Create Stateless widget
feasy widget "hello world" stateless # Create Stateless widget in lib/widgets
lib/screens
folderlib/widgets
folderflutter root directory
discord-clone is licensed under MIT license. View license. LICENSE
[I am very 😀 about every coffee!]
FAQs
feasy is command line for creating Stateful and Stateless widget and screens for flutter
The npm package feasy receives a total of 46 weekly downloads. As such, feasy popularity was classified as not popular.
We found that feasy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.