Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/landamessenger/go_mvp
- Owner: landamessenger
- License: mit
- Created: 2024-06-20T19:47:17.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-05T19:49:46.000Z (6 months ago)
- Last Synced: 2024-07-06T01:11:10.222Z (6 months ago)
- Language: Dart
- Homepage:
- Size: 313 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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)