https://github.com/dhiwise/gitlab
This is GitLab application developed using GitLab's API & Flutter
https://github.com/dhiwise/gitlab
dhiwise flutter flutter-apps git gitlab
Last synced: 3 months ago
JSON representation
This is GitLab application developed using GitLab's API & Flutter
- Host: GitHub
- URL: https://github.com/dhiwise/gitlab
- Owner: DhiWise
- License: mit
- Created: 2022-09-19T11:50:53.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-07T10:16:05.000Z (over 2 years ago)
- Last Synced: 2025-04-08T01:35:05.089Z (6 months ago)
- Topics: dhiwise, flutter, flutter-apps, git, gitlab
- Language: Dart
- Homepage:
- Size: 194 KB
- Stars: 5
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GitLab
Generated with ❤️ from Dhiwise
GitLab application which is built with Flutter.
It uses GitLab's API### Table of Contents
- [Features](#features)
- [Screenshots](#screenshots)
- [Setup](#setup)
- [Version of Technologies](#version-of-technologies)
- [Folder Structure](#folder-structure)
- [Third party packages used](#third-party-packages-used)
- [MIT License](#mit-license)
- [Community](#Community)## Features
- Get Project List
- Get Project's Commit List
- Get Project's Job List
## Screenshots

## Setup
#### 1. [GitLab's API](https://docs.gitlab.com/ee/api/)
#### 2. [Setup Flutter](https://flutter.io/setup/)
#### 3. Clone the repo
```sh
$ git clone https://github.com/DhiWise/gitlab
$ cd gitlab/
```
#### 4. Setup in code
In api_client.dart add your base URL of GitLab
#### 5.[Create Personal Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html)
#### 6. ```flutter pub get ```
#### 7. ``` flutter run ```
## Version of Technologies
Dart SDK Version 2.17.0 or greater.
Flutter SDK Version 3.0.0 or greater.
## Folder Structure
```
├── android - contains files and folders required for running the application on an Android operating system.
├── assets - contains all images and fonts of your application.
├── ios - contains files required by the application to run the dart code on iOS platforms.
├── lib - Most important folder in the project, used to write most of the dart code.
├── main.dart - starting point of the application
├── core
│ ├── app_export.dart - contains commonly used file imports
│ ├── constants - contains all constants classes
│ ├── errors - contains error handling classes
│ ├── network - contains network related classes
│ └── utils - contains common files and utilities of project
├── data
│ ├── apiClient - contains api calling methods
│ ├── models - contains request/response models
│ └── repository - network repository
├── localization - contains localization classes
├── presentation - contains all screens and screen controllers
│ └── screens - contains all screens
├── routes - contains all the routes of application
└── theme - contains app theme and decoration classes
```
## Third party packages used
intl-^0.17.0
## MIT License
Copyright (c) 2022 DhiWise
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.