Valorant Universe is an application that introduces agents and weapons from Valorant game using Valorant-API.
This app is developed with MVVM pattern.
- State management
- Cache
- Network
- Routing
- Localization
- Code Generation
- Core folder represents the services, classes that can be used in any other project.
- Features folder represents the feature set of the app. Each feature contains service, model, view, viewmodel subfolders.
- Product folder contains files specific to this project.
├── assets │ ├── fonts │ ├── icons │ └── translations ├── lib │ ├── core │ │ ├── enum │ │ ├── extension │ │ └── manager │ │ ├── language │ │ ├── network │ │ └── route │ ├── features │ │ ├── agent_detail │ │ ├── agents │ │ ├── navbar │ │ ├── weapon_detail │ │ └── weapons │ ├── product │ │ ├── constants │ │ ├── icons │ │ ├── init │ │ ├── theme │ │ └── widget │ └── main.dart ├── script ├── test │ └── service └── pubspec.yaml
Licensed under the MIT license, click here for details.