Skip to content

Commit e8af577

Browse files
authored
Merge pull request #5 from TheAlphamerc/master
Merger master branch to devlop branch.
2 parents d9431f1 + e709085 commit e8af577

File tree

126 files changed

+5100
-3223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+5100
-3223
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
99
liberapay: # Replace with a single Liberapay username
1010
issuehunt: # Replace with a single IssueHunt username
1111
otechie: # Replace with a single Otechie username
12-
custom: ['https://www.paypal.me/TheAlphamerc/']
12+
custom: ['https://www.paypal.me/shubhamsinghchahar']
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--
2+
NOTE: Please ensure you:
3+
* provide a detailed pull request description and a succinct title (consider template below for guidance),
4+
* follow the [Contributor Guidelines](https://github.com/TheAlphamerc/flutter_twitter_clone/blob/master/CONTRIBUTING.md),
5+
* and make sure that all contributions are properly licensed pursuant to the LICENSE file in the root of the repository.
6+
-->
7+
8+
## What does this PR accomplish?
9+
10+
<!-- Title should be a short phrase, e.g. "Adds survey functionality". -->
11+
12+
<!-- Detailed description can include any design decisions you want reviewers to take note of. -->
13+
14+
<!-- List all issue numbers affected and closed by this PR. -->
15+
16+
## Did you add any dependencies?
17+
18+
<!-- List each added dependency and justifications (see the Guidelines) -->
19+
20+
## How did you test the change?
21+
22+
<!-- If relevant, add any screenshots of your UI changes. -->

.github/workflows/dart.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Dart CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-and-test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-java@v1
11+
with:
12+
java-version: '12.x'
13+
- uses: subosito/flutter-action@v1
14+
with:
15+
channel: 'stable'
16+
# Get flutter packages
17+
- run: flutter pub get
18+
# Build :D
19+
- run: flutter build aot

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## [1.0.2] - 31 Mar 2020
2+
3+
* Google login failed bug fix
4+
* Email login at first time bug fix.
5+
6+
## [1.0.2] - 30 Mar 2020
7+
8+
* Added users list who liked tweet.
9+
* User can view nested profile view.
10+
* User can view their following and follower's profile.
11+
* Bug fix and performance improvement.
12+
13+
## [1.0.1] - 27 Mar 2020
14+
15+
* Added Retweet functionality.
16+
* Show Retweet count on tweet.
17+
18+
## [1.0.0] - 22 Mar 2020
19+
20+
* Initials Launch

CONTRIBUTING.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Contributing Guide
2+
3+
Fwitter app is Open Source! I love it when people contribute!
4+
5+
## Getting Started
6+
7+
- Make sure you have a [GitHub Account](https://github.com/signup/free).
8+
- Make sure the [Dart SDK](https://www.dartlang.org/tools/sdk/) is installed on your system.
9+
- Make sure you have [Git](http://git-scm.com/) installed on your system.
10+
- [Fork](https://help.github.com/articles/fork-a-repo) the [repository](https://github.com/SpinlockLabs/github.dart) on GitHub.
11+
12+
## Making Changes
13+
14+
- [Create a branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository) for your changes.
15+
- [Commit your code](http://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository) for each logical change (see [tips for creating better commit messages](http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message)).
16+
- [Push your change](https://help.github.com/articles/pushing-to-a-remote) to your fork.
17+
- [Create a Pull Request](https://help.github.com/articles/creating-a-pull-request) on GitHub for your change.
18+
- Wait for reviewers to give feedback.
19+
- When the reviewers think that the Pull Request is ready, they will merge it.
20+
21+
## Code Style
22+
23+
Fwitter follows the [Dart Style Guide](https://www.dartlang.org/articles/style-guide/). Please note that if your code is not formatted according to the guide as much as possible, we will reject your Pull Request until it is fixed. Some things such as long lines will generally be accepted, however try to make it smaller if possible.
24+
25+
## Efficiency
26+
27+
Fwitter is committed to efficiency as much as possible. If your code is not efficient, then we will probably reject your Pull Request.
28+
29+
## Rejections
30+
31+
Pull Request rejections are not a bad thing. It just means you need to fix something. Perhaps it is important to define 'rejection' as it is used in this case. A rejection is when a Fwitter committer comments on a Pull Request with a comment like 'rejected due to incorrect formatting'.
32+
33+
## Contacting Us
34+
35+

0 commit comments

Comments
 (0)