Skip to content

Commit

Permalink
Fixes + Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilCodes committed May 30, 2021
1 parent 1fb1299 commit 027f78f
Show file tree
Hide file tree
Showing 8 changed files with 787 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
![ss1](/demo/ss1.png)
![ss2](/demo/ss2.png)
![ss3](/demo/ss3.png)
![ss4](/demo/ss4.png)
782 changes: 781 additions & 1 deletion api/dist/tsconfig.build.tsbuildinfo

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/lib/providers/User.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class User extends ChangeNotifier {
var jsonOutput = jsonDecode((await http.post(
Uri.parse('$API_URL/user/login'),
body: {
'phoneNumber': '+91' + phoneNumber,
'phoneNumber': phoneNumber,
},
))
.body);
Expand Down
2 changes: 1 addition & 1 deletion client/lib/screens/ChatRoomScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class _ChatRoomScreenState extends State<ChatRoomScreen> {
message: messages[index]['message'],
senderName: messages[index]['senderName'],
time: messages[index]['time'],
isOutgoingMessage: messages[index]['isOutgoingMessage'] == 1 || messages[index]['isOutgoingMessage'],
isOutgoingMessage: messages[index]['isOutgoingMessage'] == 1,
);
},
),
Expand Down
Binary file added demo/ss1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/ss2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/ss3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/ss4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 027f78f

Please sign in to comment.