This project implements the MVVM (Model-View-ViewModel) architecture with the Repository pattern in Flutter, using the GetX library for state management and dependency injection.
The MVVM architecture was chosen for its numerous advantages such as better separation of responsibilities, increased testability, and less coupling between UI logic and business logic.
The main components of this architecture are:
- Model: Represents the data and state of the app.
- View: Is the visual representation of the user interface, and doesn't contain any business logic.
- ViewModel: Is an abstraction of the View that exposes relevant data streams to the UI. It communicates with the Model to perform tasks and update the View's state.
The Repository pattern is an integral part of this architecture. The repository is an abstraction layer between the data sources (such as network APIs, local databases, etc.) and the rest of the app. It allows the data sources to be changed without affecting the rest of the app's code.
GetX is an efficient and easy to use state management, navigation, and dependency injection library for Flutter. In the context of this architecture, GetX is used to bind the ViewModels to Widgets in a reactive way, making it easy to update the UI whenever the ViewModel's state changes.
In our Flutter MVVM template, we utilize the freezed library for creating immutable, safe, and more expressive classes. Freezed allows us to work with design patterns such as Union/Sealed classes, generating necessary boilerplate code for copyWith, hashCode, toString, and more.
- Simplifies the creation of immutable data models.
- Supports union/sealed classes, making state management easier.
- Integrates with json_serializable for efficient JSON conversions.
@freezed
class MyModel with _$MyModel {
const factory MyModel({
required String id,
required String name,
}) = _MyModel;
factory MyModel.fromJson(Map<String, dynamic> json) => _$MyModelFromJson(json);
}
Json_annotation is used in conjunction with freezed to provide a powerful and flexible way to handle JSON serialization and deserialization. This allows our data models to efficiently communicate with REST APIs by converting JSON data to and from our Dart models.
- We define our data models with json_serializable annotations.
- The necessary code for serializing/deserializing is automatically generated.
- We integrate this code with freezed for a seamless development experience.
@JsonSerializable()
class UserModel {
String name;
String email;
UserModel({required this name, required this email});
factory UserModel.fromJson(Map<String, dynamic> json) => _$UserModelFromJson(json);
Map<String, dynamic> toJson() => _$UserModelToJson(this);
}
- Clone the repository
- Clone this repository to your local machine.
- Install the dependencies
- Run the app
The project is structured as follows:
lib
β main.dart
ββββui
β ββββcontroller
β β example_view_model.dart
β ββββget
β ββββbinding
β β get_example_screen.dart
β ββββpost
β ββββbinding
β β post_example_screen.dart
ββββremote
β ββββapi
β β api_endpoints.dart
β β http_manager.dart
β ββββmodel
β β base_model.dart
β β base_model.g.dart
β ββββrepository
β β app_repository.dart
β β app_repository_impl.dart
β ββββresponse
β β api_response.dart
β β api_response.freezed.dart
β β ...
ββββrouter
β β screen_controller.dart
β β screen_name.dart
- lib - Contains the main source code of the app.
- models - Contains data models.
- ui - Contains user interface files.
- controller - Contains GetXController (reference to viewModel).
- remote - Contains API related files.
- api - Contains all API-related classes.
- model - Contains data models.
- repository - Contains the Repository classes.
- response - Contains response classes used for handling API responses.
- router - Class organizes and centralizes the definitions of app screens, including their routes and bindings in GetX.
To ensure code quality and maintainability, we have added unit tests that cover the ExampleViewModel (and, consequently, the usage of ApiResponse.when(...)). Below are the steps and examples:
dev_dependencies:
flutter_test:
sdk: flutter
# For generating and using mocks
mockito: ^5.4.6
build_runner: ^2.4.15
# For serialization (already included in the template)
json_serializable: ^6.9.5
freezed: ^3.0.6
flutter_lints: ^2.0.0
Inside the test/ directory, create the file test/mocks.dart (if it doesnβt exist) with exactly the following content:
// test/mocks.dart
import 'package:mockito/annotations.dart';
import 'package:flutter_mvvm_template/remote/repository/app_repository.dart';
import 'package:flutter_mvvm_template/remote/api/http_manager.dart';
@GenerateMocks([
AppRepository,
HttpManager, // include this if you want to test AppRepositoryImpl
])
void main() {}
In the terminal, clean up old artifacts and generate the mocks:
flutter pub run build_runner clean
dart run build_runner build --delete-conflicting-outputs
// test/example_view_model_test.dart
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import 'package:flutter_mvvm_template/remote/model/base_model.dart';
import 'package:flutter_mvvm_template/remote/response/api_response.dart';
import 'package:flutter_mvvm_template/remote/repository/app_repository.dart';
import 'package:flutter_mvvm_template/ui/controller/example_view_model.dart';
// Import the generated mocks
import 'mocks.mocks.dart';
void main() {
late MockAppRepository mockRepository;
late ExampleViewModel viewModel;
setUp(() {
// 1) Create the mock instance
mockRepository = MockAppRepository();
// 2) Inject it into the ViewModel
viewModel = ExampleViewModel(api: mockRepository);
// 3) Initial state (optional)
viewModel.getResponse.value = ApiResponse.loading();
});
test('getPosts returns Success and when() works correctly', () async {
// 1) Fake data
final fakeList = <BaseModel>[
BaseModel(id: 1, title: 'Title 1', body: 'Body 1'),
BaseModel(id: 2, title: 'Title 2', body: 'Body 2'),
];
// 2) Configure the mock to return ApiResponse.success
when(mockRepository.getDataExample())
.thenAnswer((_) async => ApiResponse.success(data: fakeList));
// 3) Execute the ViewModel method
await viewModel.getPosts();
// 4) Get the final state
final state = viewModel.getResponse.value;
// 5) Use when(...) to obtain a test String
final text = state.when(
loading: () => 'loading',
success: (data) => 'success with ${data.length}',
error: (msg) => 'error: $msg',
);
// 6) Verify the result of when()
expect(text, 'success with 2');
});
test('getPosts returns Error and when() handles the error correctly', () async {
const errorMessage = 'Network failure';
// 1) Configure the mock to return ApiResponse.error
when(mockRepository.getDataExample())
.thenAnswer((_) async => ApiResponse.error(message: errorMessage));
// 2) Execute
await viewModel.getPosts();
// 3) Get the final state
final state = viewModel.getResponse.value;
// 4) Use when(...) to extract the error message
final text = state.when(
loading: () => 'loading',
success: (_) => 'should not happen',
error: (msg) => 'error: $msg',
);
// 5) Verify the result of when()
expect(text, 'error: Network failure');
});
}
flutter test
You should see something like:
00:00 +2: test getPosts returns Success ...
00:00 +3: test getPosts returns Error ...
A different approach is to create a GetX controller for each screen and inject this controller into the binding. In my template, I opted to create only one controller and use it for multiple screens to simplify the structure.
I hope you find this project useful as a starting point for building Flutter apps using the MVVM architecture, Repository pattern, and GetX! π
Copyright 2023 Geovani Amaral
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.