Project

frap

0.01
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
CLI to create a Flutter App backed with a Rails server for quick app protoyping
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 1.4.2
~> 2.0.2
~> 3.2
= 6.0.1
~> 3.7.0
~> 1.4.1

Runtime

~> 0.20.3
 Project Readme

Build Status Gem Version Join the chat at https://gitter.im/frap-flutter-rails-cli/community Maintainability

Frap

CLI interface to quickly prototype Flutter App's using the BLoC pattern with a Rails API server.

changelog
roadmap

Prerequisites

Ensure the following are installed:

Installation

Install:

$ gem install frap

Usage

Check the version
frap --version

Create a new Flutter and Rails app.
frap new my_app
This will create a new Parent directory for the Rails and Flutter App.

|__ my_app  
  |__ my_app_server  
  |__ my_app_ui

Generate a Rails and Flutter Resource from the app route directory /my_app, currently does NOT support references, please open an ISSUE for broken data types
frap generate resource post -a title:string body:text

The next step is to implement your Rails controller method for index action and run the migrations:

cd my_app/my_app_server
rails db:migrate

You can then edit the app/constrollers/posts_controller.rb:

class PostsController < ApplicationController
  def index
    render json: { posts: Post.all.as_json }, status: :ok
  end
end

Next fire up Rails and Flutter (you may need to start up an emulator, just follow the terminal output:

cd my_app/my_app_server
rails s

cd my_app/my_app_ui
flutter run

Motivation

Moving from the old school PHP/HTML/JS/jQuery/Yii(later came bootstrap) into the Rails way of life, I quickly fell in love with Rails and how easy it was to build basic functionality.

In stepped in NodeJS and React and I was back to having to build everything from scratch, mixing presentation logic and business logic together "because it's the same thing" and then extracting components because as it turns out, it's not the same thing... Not good for productivity and it's very expensive, especially for startups.

Since then I've been trying every new JS framework and nothing really made things less convoluted.

When I started looking into Flutter and the recommended way to manage state using the BLoC pattern, I realized that the BLoC pattern and the way Flutter apps are structured (everythings a Widget much like everything is an Object) lends itself code automation, getting the boilerplate out the way.

The goal this CLI is to mimic Rails generators and allow you to do something like: frap g resource User name:string,email:string,age:int,password_digest This will call the rails generator as one would expect. In addition, it will create the "view", or page in Flutter with all the fields, routes and blocs ready to use, ready to save and most importantly... Already styled using the material dart package.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/flippakitten/frap. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Frap project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.