butter 0.5.0 copy "butter: ^0.5.0" to clipboard
butter: ^0.5.0 copied to clipboard

outdated

A thin application framework for flutter making use of async_redux

pub package Build Status

A thin application framework for flutter making use of async_redux.

Butter allows you to structure your app into modules and submodules where each module is composed of pages, states, models and actions as already introduced by redux.

It is best to be used together with its commandline companion called butter_cli for easy scaffolding.

Using #

import 'package:butter/butter.dart';

Check out the API Reference for a more detailed information on usage.

Most common classes used to structure the app are as follows:

Concepts #

Data Flow #

Typical Flow

  1. An event occurs on the Page that triggers an action
  2. An Action is dispatched
  3. Redux causes the associated Reducer of the Action to get called
  4. The Reducer mutates the associated UI Model in the Store
  5. Redux calls the State to check if the UI Model data has actually changed
  6. If there is a significant change, redux triggers the Page to re-render with the updated UI Model data

On Initialization

  1. Process starts with the State reading the UI Model data from the Store
  2. UI Model data is passed to the Page for initial rendering

Routing #

The App object will contain a list of top level Modules. A typical Module contains a list of routes of State and Page pairs but it can also contain a list of sub-Modules. Sub-Modules can in turn nest further routes of State and Page pairs and sub-Modules depending on how complex an app structure you want to design.

Project Structure #

lib
 |
 +-- app
 |    |
 |    +-- app.dart
 |    +-- routes.dart
 |    +-- theme.dart
 |
 +-- config
 |    |
 |    +-- app_config.dart
 |    +-- ..._config.dart
 | 
 +-- data
 |    |
 |    +-- ..._model.dart
 |
 +-- modules
 |    |
 |    +-- <module-name>
 |    |    |
 |    |    +-- actions
 |    |    |    |
 |    |    |    +-- ..._action.dart
 |    |    |    +-- ...
 |    |    |
 |    |    +-- components
 |    |    |    |
 |    |    |    +-- ...dart
 |    |    |    +-- ...
 |    |    |
 |    |    +-- models
 |    |    |    |    
 |    |    |    +-- ..._model.dart
 |    |    |    +-- ...
 |    |    |
 |    |    +-- pages
 |    |    |    |
 |    |    |    +-- ..._page.dart
 |    |    |    +-- ...
 |    |    |
 |    |    +-- states
 |    |    |    |
 |    |    |    +-- ..._state.dart
 |    |    |    +-- ...
 |    |    |
 |    |    +-- <module-name>.dart
 |    |
 |    +-- <module-name>
 |
 +-- services
 |    |
 |    +-- ..._service.dart
 |
 +-- utils
 |    |
 |    +-- sub_module_page_specs.dart
 |
 +-- main.dart

Directories #

app - App specific codes

config - App configurations separated depending on purpose, such as, security, API urls, etc.

data - Data models to be used for things like API transactions

modules - All app modules

services - All services pertaining to the device api encapsulations or 3rd party api middlewares

utils - Utility codes from shared components across modules and utility libraries that doesn't qualify elsewhere

First Class Files #

main.dart

  • App boostrap code

app/app.dart

  • The main app declaration
  • Where the navigation settings are loaded

app/routes.dart

  • List of all top level modules
  • The first defined module in the list automatically gets assigned with the root route ('/')
  • See BaseRoutes class

app/theme.dart

  • App theming and branding definitions

config/app_config.dart

  • General app configurations and initial settings

Module Organization #

actions

components

  • Components that can be shared across all pages within the module

models

pages

states

<module-name.dart>

  • Root file of the module
  • Sub routing and child modules are defined here
  • See BaseModule class

Optional Files #

utils/sub_module_page_specs.dart

  • Page specs definition for sub-module data passing
  • See BasePageSpecs class

Examples #

Todo

  • demonstrates the basics of creating a single module with multiple screens
  • also shows how stateful components are constructed within a page

Submodules

References: #

7
likes
0
pub points
69%
popularity

Publisher

verified publisherzoogtech.com

A thin application framework for flutter making use of async_redux

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

async_redux, flutter, logger

More

Packages that depend on butter