Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/landamessenger/go_mvp

Package designed to streamline the preparation of each screen in a project using the MVP
https://github.com/landamessenger/go_mvp

Last synced: about 1 month ago
JSON representation

Package designed to streamline the preparation of each screen in a project using the MVP

Awesome Lists containing this project

README

        

[![Pub Version](https://img.shields.io/pub/v/go_mvp.svg)](https://pub.dev/packages/go_mvp)
[![Build Status](https://travis-ci.org/landamessenger/go_mvp.svg?branch=master)](https://travis-ci.org/landamessenger/go_mvp)
[![Coverage Status](https://coveralls.io/repos/github/landamessenger/go_mvp/badge.svg?branch=master)](https://coveralls.io/github/landamessenger/go_mvp?branch=master)

# go_mvp

A package designed to streamline the preparation of each screen in a project using the MVP (Model-View-Presenter) architecture.

## Features

- **MVP Architecture**: Easy screen creation with mvp architecture.
- **Easy navigation**: Navigation via go_router. Easily manage the data sent to the screen as well as the returns on screen closure..
- **Android-like Lifecycle Events**: Implements lifecycle methods (`onCreate`, `onResume`, etc.) similar to Android, making it easier for developers transitioning from Android development to Flutter.
- **Easy to Use**: Designed to be straightforward and developer-friendly, reducing the boilerplate code required for setting up screens and navigation.
- **Command-line tool**: Quickly create new screens without worrying about the architecture.

### [Home](https://github.com/landamessenger/go_mvp/wiki)

### [Installation](https://github.com/landamessenger/go_mvp/wiki/Installation)

[- Requirements](https://github.com/landamessenger/go_mvp/wiki/Installation#requirements)

[- Project Configuration](https://github.com/landamessenger/go_mvp/wiki/Installation#project-configuration)

[- Create new screens](https://github.com/landamessenger/go_mvp/wiki/Installation#create-new-screens)

### [Lifecycle](https://github.com/landamessenger/go_mvp/wiki/Lifecycle)

[- Implementations](https://github.com/landamessenger/go_mvp/wiki/Lifecycle#implementations)

### [Navigation](https://github.com/landamessenger/go_mvp/wiki/Navigation)

### [State](https://github.com/landamessenger/go_mvp/wiki/State)

[- Usage from the ViewModel](https://github.com/landamessenger/go_mvp/wiki/State#from-the-viewmodel)

[- Usage from the Presenter](https://github.com/landamessenger/go_mvp/wiki/State#from-the-presenter)

[- Usage from the View](https://github.com/landamessenger/go_mvp/wiki/State#from-the-view)